.signika-<uniquifier> {
  font-family: "Signika", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "GRAD" 0;
}

.nav-menu li, .socials a {
    margin: 0 30px 0 0;
}

.nav-menu a {
    line-height: 60px;
    height: 60px;
    padding: 0px 10px 0px 10px;
    vertical-align: baseline;
    width: auto;
    display: block;
    color: #421109 !important;
    font-size: 22px;
    font-family: 'Signika', sans-serif;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #d7890d !important;
}

#theme-main {
    background: url(../tree2-min.png) no-repeat center right;
    background-color: rgb(249 247 244);
    background-size: auto 100%;
    padding-bottom: 80px;
    background-attachment: fixed;
}

#theme-main .content {
    padding-top: 155px;
}

#theme-main h1 {
    color: #c98314 !important;
    font-weight: 300;
    line-height: 1.2;
    font-size: 2.7rem;
    font-family: 'Signika', sans-serif;
}

#theme-main h3, #theme-main h5 {
    color: #471409 !important;
    font-weight: 700;
    line-height: 1.2;
    font-size: 20px;
    font-family: 'Signika', sans-serif;
}

form input[type="text"], input[type="email"], input[type="number"] {
    font-size: 18px;
    font-family: "Open Sans", sans-serif;
    padding: 10px 20px;
    font-weight: 500;
    color: #666;
    border-radius: 2px;
    border-color: #e2dacf;
    outline: none;
}

.form-select {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    padding: 10px 20px;
    font-weight: 500;
    color: #666;
    border-radius: 2px;
    border-color: #e2dacf;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    cursor: pointer;
}

input[type="number"] {
    font-family: "Open Sans Bold", sans-serif;
    font-weight: 600;
}

/* CHECKBOX */
.control {
    font-family: 'Open Sans', sans-serif;
    display: block;
    position: relative;
    padding-left: 50px;
    margin-bottom: 10px;
    padding-top: 5px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control strong {
    font-family: 'Open Sans Bold', sans-serif;
}
.control a {
    color: #666;
}
.control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 30px;
    width: 30px;
    background: #ffffff;
    border: 2px solid #f9ce89;
    border-radius: 0px;
}
.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
    background: #ffffff;
}

.control input:checked ~ .control_indicator {
    background: #fff;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
    background: #fff;
}
.control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.control_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control input:checked ~ .control_indicator:after {
    display: block;
}
.control-checkbox .control_indicator:after {
    left: 9px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid #c88315;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
}
.control-checkbox .control_indicator::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 3.671rem;
    height: 3.313rem;
    margin-left: -0.26rem;
    margin-top: -0.48rem;
    background: #2aa1c0;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}
@keyframes s-ripple {
    0% {
        transform: scale(0);
    }
    20% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
@keyframes s-ripple-dup {
   0% {
       transform: scale(0);
    }
   30% {
        transform: scale(1);
    }
    60% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
.control-checkbox input + .control_indicator::before {
    animation: s-ripple 250ms ease-out;
}
.control-checkbox input:checked + .control_indicator::before {
    animation-name: s-ripple-dup;
}

/* END CHECKBOX */

/* RADIO */
.control-2 {
    font-family: 'Open Sans', sans-serif;
    display: block;
    position: relative;
    padding-left: 50px;
    margin-bottom: 10px;
    padding-top: 5px;
    cursor: pointer;
    font-size: 16px;
}
.control-2 input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control-2_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 30px;
    width: 30px;
    background: #ffffff;
    border: 2px solid #f9ce89;
    border-radius: 0 !important;
}
.control-2:hover input ~ .control-2_indicator,
.control-2 input:focus ~ .control-2_indicator {
    background: #ffffff;
}

.control-2 input:checked ~ .control-2_indicator {
    background: #fff;
}
.control-2:hover input:not([disabled]):checked ~ .control-2_indicator,
.control-2 input:checked:focus ~ .control-2_indicator {
    background: #ffffff;
}
.control-2 input:disabled ~ .control-2_indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.control-2_indicator:after {
    box-sizing: unset;
    content: '';
    position: absolute;
    display: none;
}
.control-2 input:checked ~ .control-2_indicator:after {
    display: block;
}
.control-2-radio .control-2_indicator {
    border-radius: 50%;
}

.control-2-radio .control-2_indicator:after {
    left: 9px;
    top: 3px;
    height: 12px;
    width: 6px;
    border-radius: 0;
    transition: background 250ms;
    border: solid #c88315;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.control-2-radio input:disabled ~ .control-2_indicator:after {
    background: #7b7b7b;
}
.control-2-radio .control-2_indicator::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 4.5rem;
    height: 4.5rem;
    margin-left: -1.3rem;
    margin-top: -1.3rem;
    background: #2aa1c0;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
}
@keyframes s-ripple {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    20% {
        transform: scale(1);
    }
    100% {
        opacity: 0.01;
        transform: scale(1);
    }
}
@keyframes s-ripple-dup {
   0% {
       transform: scale(0);
    }
   30% {
        transform: scale(1);
    }
    60% {
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}
.control-2-radio input + .control-2_indicator::before {
    animation: s-ripple 250ms ease-out;
}
.control-2-radio input:checked + .control-2_indicator::before {
    animation-name: s-ripple-dup;
}

/* END RADIO */

.to-step2, .to-step3, .to-step4, .to-end, .to-repeat {
    width: 100%;
    background: #c98314;
    border: 0;
    border-radius: 0;
    font-size: 18px;
    font-family: 'Signika', sans-serif;
    line-height: 2.2em;
    font-weight: 500;
    margin-top: 20px;
}

.to-step2:hover, .to-step2:active, .to-step3:hover, .to-step3:active, .to-step4:hover, .to-step4:active, .to-end:hover, .to-end:active, .to-repeat:hover, .to-repeat:active {
    background-color: #d7890d !important;
    border-color: #d7890d !important;;
}

.to-repeat {
    background: #d3ab6c;
}

.pattern {
    background: url(../footer.jpg);
    height: 121px;
}

#tripsList li::marker {
    color: #c98314;
}

.trip-item {
    margin-top: 30px;
}

.trip-item strong {
    color: #c98314;
    font-family: 'Open Sans Bold', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.trip-item p {
    color: #666;
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 300;    
}

.trip-info {
    background: #fff;
    padding: 40px;
    margin: 20px 0;
}

.trip-info h4 {
    color: #c98314;
    font-family: 'Open Sans Bold', sans-serif;
    font-size: 20px;
    font-weight: 700;  
}

.trip-info p {
    color: #666;
    font-size: 17px;
    font-weight: 300;    
}

.trip-info p b {
    font-family: 'Open Sans Bold', sans-serif;
    font-weight: 600;
}

.summary h3 {
    font-size: 24px;
    font-weight: 600;
}

.summary p {
    color: #666;
    font-size: 17px;
    font-weight: 300;    
}

.summary p b {
    font-family: 'Open Sans Bold', sans-serif;
    font-weight: 600;
    color: #421109;
}

footer {
    background: #f8f7f3;
}

footer p {
    font-family: 'Signika', sans-serif;
    margin-top: 12px;
    color: #b3b3b3;
    font-size: 18px;
    font-weight: 500;
}

footer p a {
    color: #b3b3b3;
    text-decoration: none;
}

.bg-light {
    background-color: unset !important;
}

.toggle-description {
    text-decoration: none;
    color: #c88315;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        height: 200px;
    }
    .navbar-nav {
        flex-direction: column !important;
        background: transparent;
        width: 100%;
        font-size: 18px;
    }
    .bg-light {
        background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
    }
    #theme-main h1 {
        font-size: 1.7rem;
    }
    #theme-main .content {
        padding-top: 50px;
    }
}