html {
    scroll-behavior: smooth;
}

.text-shadow {
    text-shadow: 0px 6px 6px rgba(0, 0, 0, 1);
}

.gradient-right {
    background: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    background: -o-linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    background: -moz-linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #591718;
    font-size: 24px;
    border-style: solid;
    border-top-style: none;
    border-right-style: none;
    border-bottom-width: 2px;
    border-bottom-color: #591718;
    border-left-style: none;
}

.turn-to-white a {
    color: white !important;
}

.turn-to-white img {
    filter: brightness(0) invert(1);
}

.bg-seda-brown {
    background-color: #ece4dd;
}

.bg-seda-darkbrown {
    background-color: #d4c4b8;
}

.bg-seda-black {
    background-color: #2e2e2e;
}

.bg-seda-font-color {
    color: #591718
}

.height-100 {
    height: 100px;
}


/* MOBILE MENU */

#mobile-menu {
    position: fixed;
    z-index: 999;
}

#menuToggle {
    display: none;
}

.open {
    background-color: #591718;
    width: 26px;
    height: 4px;
    display: block;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    top: -2px;
    left: -13px;
}

.open:before {
    content: "";
    background-color: #591718;
    width: 26px;
    height: 4px;
    display: block;
    border-radius: 2px;
    position: relative;
    top: -8px;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.open:after {
    content: "";
    background-color: #591718;
    width: 26px;
    height: 4px;
    display: block;
    border-radius: 2px;
    position: relative;
    top: 4px;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.menuOpen {
    width: 24px;
    height: 20px;
    display: block;
    padding: 15px 18px;
    margin: 10px;
    cursor: pointer;
    float: right;
    background-color: #ffffff;
    border-radius: 2px;
}

.loginOpen {
    width: 24px;
    height: 20px;
    display: block;
    padding: 15px 18px;
    margin: 10px 5px;
    cursor: pointer;
    float: right;
    background-color: #ffffff;
    border-radius: 2px;
}

.login-icon {
    position: relative;
    top: -13px;
    left: -10px;
    width: 20px;
    filter: invert(14%) sepia(63%) saturate(2772%) hue-rotate(339deg) brightness(64%) contrast(94%);
}

.menuOpen:hover .open:before {
    top: -9px;
}

.menuOpen:hover .open:after {
    top: 5px;
}

.menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #591718;
}

.menu label {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 20px;
    background-size: 100%;
    cursor: pointer;
}

.menu .menuContent {
    position: relative;
    top: 50%;
    font-size: 54px;
    text-align: center;
    padding-bottom: 20px;
    margin-top: -170px;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.menu ul li a {
    display: block;
    color: white;
    text-decoration: none;
    transition: color 0.2s;
    font-family: Trebuchet MS;
    text-transform: uppercase;
    padding: 10px 0;
    font-size: 15px;
}

.menu ul li a:hover {
    color: #ff8702;
}

.menu ul li:hover {
    background: white;
}

.menuEffects {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.menuEffects ul {
    transform: translateY(0%);
    transition: all 0.5s;
}

#menuToggle:checked~.menuEffects {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s;
}

#menuToggle:checked~.menuEffects ul {
    opacity: 1;
}

#menuToggle:checked~.menuOpen .open {
    background-color: transparent;
}

#menuToggle:checked~.menuOpen .open:before {
    content: "";
    background-color: white;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

#menuToggle:checked~.menuOpen .open:after {
    content: "";
    background-color: white;
    transform: rotate(-45deg);
    position: relative;
    top: 0;
    right: 0;
    z-index: 1;
}

#menuToggle:not(:checked)~.menuEffects ul {
    transform: translateY(-30%);
}


/* GENERIC STYLE */

.btn-seda {
    background-color: #591718 !important;
    color: white;
}

.btn-seda-inverted {
    border: 1px solid #591718 !important;
    color: #591718;
}

.forgot-password {
    text-decoration: underline;
    color: #591718;
    cursor: pointer;
}

.forgot-password:hover {
    color: #591718 !important;
}

.forgot-password-description {
    font-size: 13px;
}

.forgot-password-message {
    font-size: 12px;
}

.login-message {
    font-size: 12px;
}

.font-color-seda {
    color: #591718;
}

.modal-content {
    border-radius: 0 !important;
}

.cookie-consent {
    position: fixed;
    left: 0;
    bottom: 0;
    /* height: 83px; */
    width: 100%;
    background-color: #333333;
    color: white;
    text-align: center;
    z-index: 9999;
}

.cookie-consent p {
    font-size: 15px !important;
    margin-bottom: 10px;
}

.cookie-consent .agree-cookie-consent {
    font-size: 12px !important;
    background-color: #9a7e67 !important;
    border-color: #9a7e67 !important;
}

#privacy-policy-modal .modal-body {
    font-family: 'Barlow Semi Condensed', sans-serif;
    color: #523424;
}

#privacy-policy-modal .modal-body p,
#privacy-policy-modal .modal-body ul {
    font-size: 18px;
    font-weight: 500;
}

#privacy-policy-modal .modal-body ul {
    padding: 0;
    margin: 0 0 16px 20px;
}

#privacy-policy-modal .modal-body h4 {
    font-size: 26px;
}