/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/open-sans-v40-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/open-sans-v40-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* oswald-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/oswald-v53-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* oswald-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/oswald-v53-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* oswald-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/oswald-v53-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* oswald-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/oswald-v53-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	box-sizing: border-box;
}
body {
    /*height: 100vh;*/
    height: 100%;
	font-size: 16px;
}
h1 {
    font-family: 'Oswald', 'Open Sans', sans-serif;
    font-weight: 600;
}
strong {
    font-weight: 600;
}
::selection {
  color: #fff;
  background: #8A0D32;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.content {
    flex: 1;
}
header {
    width: 90%;
    margin: 0 auto;
    height: 250px;
    background-image: url('../imgs/allegro-headerimg-01.jpg');
    background-size: cover;
    background-position: cover;
}
header h1 {
    color: #fff;
    font-size: 3rem;
    float: right;
    padding-right: 2rem;
    margin-top: -2rem;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 2px 3px;
}
header .logo img {
    height: 200px;
    margin-left: 3rem;
}
.language {
    float: right;
}
.language a {
    text-decoration: none;
    color: black;
}
.language ul {
    background-color: #fff;
    padding: 1rem;
}
.language ul li {
    display: inline;
    border-right: 1px solid #000;
    padding-right: .3rem;
}
.language ul li:last-child {
    border-right: 0;
}
.language a {
    color: #880534;
    cursor: pointer;
}
section{
    width: 90%;
    margin: 0 auto;
}
section.form form textarea,
section.form form input {
	padding: .5rem;
	margin: .5rem;
}
section.form form legend,
section.form form label {
	margin-left: .5rem;
}
label span {
    font-size: 0.8rem;
}
select {
    height: 2.3rem;
    margin-top: .55rem;
}
.form-row {
	display: flex;
	width: 100%;
	margin: 1rem 0;
	justify-content: space-between;
}
.form-column {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.form-subrow {
	display: flex;
}
i {
    font-size: .8em;
    font-style: italic;
    font-weight:200;
    color: #717171;
}
i a {
    color: #717171;
    text-decoration: underline;
}
.w-50 {
	width: 50%;
}
.w-33 {
	width: 33%;
}
.error {
    color: red;
}
small {
    font-style: italic;
    visibility: hidden;
}
.pbar {
    width: 100%;
    margin: 2rem 0;
}
progress::-moz-progress-bar { background: #8a0c32; }
progress::-webkit-progress-value { background: #8a0c32; }
progress { color: #8a0c32; background-color: #8a0c32; }
.pbar-i {
    width: 2rem;
    height: 2rem;
    background-color: #8A0D32;
    margin-bottom: -3.5rem;
    z-index: 1;
    position: relative;
    border-radius: 1rem;
    margin-top: 2rem;
    margin-left: -0.5rem;
}
.pbarhl {
    margin-top: 0;
    float: right;
}
/* progress bar new */
.prograss-bar {
    width: 100%;
    display: flex;
    margin: 2rem 0;
}
.st {
    width: 100%;
    background-color: #F0F1F3;
    border-left:1px solid #8A0D32;
    background-repeat: no-repeat;
    background-position: 0 50%;
}
.st.done,
.st.current { 
    color: #fff; 
    background-color: #8A0D32 !important;
    border-left:1px solid #fff;
}
.st-0 {
    background-color: #8A0D32;
    width: 15rem;
}
.st-5 {
    width: 15rem;
}
.st span {
    display: block;
    text-align: center;
    margin: 0.2rem auto;
    background-repeat: no-repeat;
    background-position: 50%;
    height: 1.2rem;
}

.form-nav {
    display: flex;
    justify-content: space-between;
}
.form-nav-btn {
    background-color: #2a010e;
    width: 45%;
    padding: 1rem;
    cursor: pointer;
    color: #fff;
    text-align: center;
    font-weight: 600;
}
.form-nav-btn:hover,
.form-nav-btn:focus {
    background-color: #fff;
    color: #2a010e;
    /*border: 1px solid #2a010e;
    border-collapse: collapse;*/
    box-shadow: inset 0px 0px 0px 1px #2a010e;
}
#form-slide-0 .form-nav {
    justify-content: flex-end;
}
button {
    background-color: #2a010e;
    color: #fff;
    height: 3rem;
    font-size: 1rem;
    font-weight: 600;
}
button:hover,
button:focus {
    background-color: #fff;
    color: #2a010e;
    box-shadow: inset 0px 0px 0px 1px #2a010e;
}
.btn-add {
    display: block;
    color: #fff;
    background-color: #2a010e;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 1.9rem;
    padding-top: .5rem;
    text-align: center;
    cursor: pointer;
}
.cb-col  {
    position: relative;
}
.cb-col .cb {
    position: absolute;
    right: 0;
}
.disp-n {
    display: none;
}
.disp-f{
    display: flex;
}
.disp-b {
    display: block;
}
input[type=file] {
  width: 350px;
  max-width: 100%;
  color: #444;
  padding: 5px;
  background: #fff;
  border: 1px solid #555;
}
input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  background-color: #2a010e;
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
}

input[type=file]::file-selector-button:hover {
  background-color: #2a010e;
}
select {
    font-size: 1rem;
}
input[type=checkbox] {
    width: 2rem;
    height: 2rem;
    accent-color: #8A0D33;
}
.form-row .form-column select {
    margin: 0.5rem;
}
.form-row .form-column:first-child input,
.form-row .form-column:first-child select,
.form-row .form-column:first-child label {
    margin-left: 0;
}
.form-row .form-column:last-child input,
.form-row .form-column:last-child select {
    margin-right: 0;
}
.form-row .form-column:not(:first-child) .tooltip-info,
.form-row .form-column:not(:first-child) .error {
    margin-left: 0.5rem;
}
.fam input[type="date"]::-webkit-calendar-picker-indicator,
input#birthdate::-webkit-calendar-picker-indicator{
  display: none;
  -webkit-appearance: none;
}
.fam input[type="date"],
input#birthdate {
  -moz-appearance: textfield;
}
/*
input#birthdate::-webkit-calendar-picker-indicator{
	display: none;
}
input#birthdate[type="date"]::-webkit-input-placeholder{
	visibility: hidden !important;
}*/
.btn-remove {
    display: none;
}
.notifications {
    text-align: center;
}
/*.tooltip:hover small {
    visibility: visible;
}*/
.tooltip-icon {
    visibility: hidden;
}
.tooltip:hover .tooltip-icon {
    visibility: visible;
}
.tooltip-icon {
    width: .9rem;
    height: .9rem;
    margin-left: 0.3rem;
    display: inline-block;
}
.tooltip-icon:hover {
    cursor: pointer;
}
#formSummary {
    display: none;
}
#formSummary .form-column {
    display: block;
}
#formSummary .hl {
    font-size: 1rem;
}
#formSummary legend {
    margin-left: 0;
}
#formSummary strong {
    font-size: 0.8rem;
}
#formSummary .form-column.sumFamMembrsList .sumFamMembrs {
    width: 100%;
}
#formSummary .sumFamMembrsList {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.sumFamMembrsListItm {
    width: 49%;
}
.sumTourGrp {
    flex-direction: column;
}
#formSummary .sumTourGrpList {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.sum-block {
    display: flex;
    flex-direction: column;
}
.sum-edit:hover .edit-slide {
    display: none;
}
.sum-edit:hover .edit-slide {
    display: inline;
} 
.sumTourGrpListItm {
    width: 49%;
}
.edit-slide {
    font-size:.7em;
    font-weight: 200;
    margin-left: .5rem;
    color: #898989;
    display: inline;
    display: none;
}
.edit-slide:hover {
    text-decoration: underline;
    /*color: #880534;*/
    cursor: pointer;
}
.edit-icon {
    width: .9rem;
    height: .9rem;
    margin-right: 0.3rem;
    display: inline-block;
}
.edit-icon span {
    /*display: none;*/
    margin-left: 1.5rem;
    visibility: hidden;
}
.edit-icon:hover span {
    /*display: inline;*/
    visibility: visible;
}
button[type=submit] {
    cursor: pointer;
}

footer {
    background-color: #171212;
    color: #fff;
    margin-top: 4rem;
    
}
.footer-content {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-around;
}
.f-col {
    line-height: 1.7rem;
}
.f-col a {
    text-decoration: none;
    color: #fff;
}
@media screen and (max-width:850px) {
    header {
        width: 100%;
    }
    header .logo img {
        height: 150px;
    }
    header h1 {
        font-size:1.5rem;
        margin-top: 0;
    }
    .form-row {
        flex-wrap: wrap;
    }
    .form-column {
        width: 100%;
    }
    .form-column input,
    .form-column label {
        margin-left: 0;
    }
    section.form form textarea,
    section.form form input,
    section.form form select,
    .form-row .form-column select,
    section.form form label {
    	/*margin: .5rem 0;*/
    	margin-left: 0;
    	margin-right: 0;
    }
    input[type="date"] {
        width: 100%;
        height: 2.5rem;
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
    }
    label i {
        display: block;
    }
    .sumFamMembrsListItm {
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .f-col {
        padding: 1.5rem;
        border-bottom: 1px solid #252525;
    }
    .f-col:last-child {
        border: 0;
    }
}

/*************Form Success***************/
.form-success {
    text-align: center;
    margin-top: 5rem;
}
.tours-slider {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}
h3 {
    margin-top: 2rem;
}
.tour-slide {
    width: 30%;
    padding: 0 1rem;
}
.tour-slide a {
    color: #000;
    text-decoration: none;
}
.tour-slide a:hover {
    text-decoration: underline;
}
.tour-slide a:hover img {
    /*width: 120%;
    height: 120%;
    transition: 1s;*/
}
.img-container {
    width: 100%;
    height:100%;
    position: relative;
    height: 15rem;
    overflow: hidden;
}
.tour-slide figure img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.tour-slide figure figcaption {
    font-family: 'Oswald', 'Open Sans', sans-serif;
    padding: 1rem;
}
@media screen and (max-width:850px) {
    .tours-slider {
        flex-direction: column;
    }
    .tour-slide {
        width: 100%
    }
}

