@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
:root {
    --green-color: #6D9773;
    --light-green-color: #5ca08e;
    --brown-color: #6A4B39;
    --orange-color: #D08D66;
    --black-color: #2D322B;
    --white-color: #EAF1EA;
    --slider-height: 600px;
    --body-width: 1024px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins';
    font-size: 12px;
    margin: 0 auto;
}

p{
    margin-bottom: 20px;
}
a {
    text-decoration: none;
    color: inherit;
    outline: none;
    border: none;
}

.external-link{
    font-style:italic;
    color:var(--brown-color);
    font-weight:bold;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-wrapper{
    background: var(--white-color);
    position: fixed;
    margin-top: 0;
    z-index: 3;
    width: 100%;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
}

.contact-bar{
    background: var(--white-color);
    padding: 10px 10px;
    background-color: #D08D66;
    width:100%;
    color:#fff;
}

.contact-bar ul{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:10px;
}

.contact-bar i{
    padding: 0px 4px;
}


.contact-bar img{
    padding: 0px 4px;
    height:12px;
    width:28px;
    display:inline-block;
}
header {
    justify-content: space-between;
    width: 100%;
}

header #logo {
    height: 70px;
    padding: 5px;
}

header ul {
    color: var(--black-color);
}

header ul li {
    display: block;
    margin: 18px 5px;
}

header ul li a {
    width: 100%;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 5px 10px;
    padding: 5px 10px;
    border-radius: 2px;
}

header ul li a:hover {
    background-color: var(--green-color);
    color: var(--white-color);
}

.contact-bar ul li .language{
    display:flex;    
}

.contact-bar ul li .language a{
    display:inline-block;
    padding-left:20px;   
}

header .cta {
    border-radius: 3px;
    background-color: var(--orange-color);
    color: var(--white-color);
    border-style: none;
    font-size: 1rem;
    margin-top: 40px;
    text-align: center;
}

header .cta:hover {
    background-color: var(--green-color);
    color: white;
}

header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
    overflow: hidden;
    width: 100%;
}

header .menu-icon {
    padding: 28px 20px;
    position: relative;
    float: right;
    cursor: pointer;
}

header .menu-icon .nav-icon {
    background: var(--green-color);
    display: block;
    height: 2px;
    width: 26px;
    position: relative;
    transition: background .2s ease-out;
}

header .menu-icon .nav-icon::before {
    background: var(--green-color);
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all .2s ease-out;
    top: 8px;
}

header .menu-icon .nav-icon::after {
    background: var(--green-color);
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    transition: all .2s ease-out;
    top: -8px;
}

header .menu-btn {
    display: none;
}

header .menu-btn:checked~.menu {
    max-height: none;
    overflow-y: auto;
    height: 60vh;
}

header .menu-btn:checked~.menu-icon .nav-icon {
    background: transparent;
}

header .menu-btn:checked~.menu-icon .nav-icon:before {
    transform: rotate(-45deg);
    top: 0;
}

header .menu-btn:checked~.menu-icon .nav-icon:after {
    transform: rotate(45deg);
    top: 0;
}

.footer {
    background-color: var(--black-color);
    padding: 60px 5px;
    margin: 0 auto;
}

.footer .address {
    display: block;
    justify-content: space-between;
}

.footer .address .contacts {
    font-size: 0.85rem;
    color: var(--white-color);
}

 .contacts img{
    padding: 0px 4px;
    height:12px;
    width:28px;
    display:inline-block;
    margin:0px 18px;
}

.footer .address .contacts .company {
    font-size: 1.2rem;
    text-align: center;
    color: var(--white-color);
    font-weight: 900;
    margin-bottom: 20px;
    margin-left: 5px;
}

.footer .address .contacts i {
    color: var(--white-color);
    margin: 10px 10px;
}

.footer .address .social {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 40px;
}

.footer .address .social i {
    color: var(--white-color);
    margin: 10px 10px;
}

.footer .copyright {
    margin-top: 50px;
    text-align: center;
    color: var(--white-color);
}

.slider {
    width: 100%;
    border-style: solid;
    border-width: 1px;
    margin: 0 auto;
    padding-top: 200px;
    background-color: var(--white-color);
}

.slider .slide {
    width: 100%;
    height: 250px;
    margin: 0 auto;
    position: relative;
}

.slider .slide img {
    object-fit: cover;
    width: 100%;
    height: 250px;
    margin: 0 auto;
}

#welcome {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white-color);
    position: absolute;
    left: 5px;
    bottom: 10px;
}

#welcome span {
    font-size: 2rem;
    font-weight: 900;
    color: var(--whie-color);
}

.outline-text {
    text-shadow: -1px 0 var(--black-color), 0 1px var(--black-color), 1px 0 var(--black-color), 0 -1px var(--black-color);
}

#about {
    padding: 40px 5px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
    background-color: var(--light-green-color);
    color: var(--white-color);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 900;
    padding: 20px;
}

.section-description {
    font-size: 0.95rem;
    line-height: 1.5rem;
    letter-spacing: 1px;
}

#about .section-description {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
}

#quote {
    padding: 100px 5px;
    margin-bottom: 10px;
    background: var(--green-color);
}

#quote .section-title {
    text-align: center;
    color: white;
}

.form-wrapper {
    border: 1px solid var(--white-color);
    border-radius: 10px;
    padding: 5px;
    color: var(--black-color);
    background-color: white;
}

.quote-form {
    width: 100%;
    margin: 0 auto;
}

.form-box {
    width: 100%;
    margin: 0 auto;
    display: block;
    margin-bottom: 5px;
}

.form-box .form-field {
    width: 100%;
    padding: 5px 10px;
    margin: 10px 0px;
}

.form-box .form-field input[type=button] {
    padding: 8px 40px;
    color: var(--white-color);
    background-color: var(--brown-color);
    font-weight: 900;
    border-style: none;
    border-radius: 1px;
    width: 100%;
    cursor:pointer;
}

#pax {
    display: block;
}

#adults {
    margin-right: 10px;
}

.form-box .form-field input, .form-box .form-field select {
    width: 100%;
    height: 35px;
    border-radius: 2px;
    border: 1px solid var(--brown-color);
    /* border-style: none; */
    padding: 2px 10px;
    outline: none;
    font-size: 0.9rem;
    color: var(--black-color);
    background-color: var(--white-color);
}

.form-box .form-field label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.form-box textarea {
    width: 100%;
    height: 160px;
    border-radius: 2px;
    border: 1px solid var(--brown-color);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--black-color);
    background-color: var(--white-color);
    padding: 5px 10px;
}

.copyright {
    font-size: 0.8rem;
}

#destinations {
    padding: 40px 5px;
    margin-bottom: 10px;
    background: var(--white-color);
}

.places-wrapper {
    display: grid;
    grid-template-columns: 1fr;
}

.place {
    margin: 20px 5px;
    height: 280px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 5px;
    transition: 3s;
    cursor: pointer;
    overflow:hidden;
}

.place:hover>.place-box {
    height: 280px;
    overflow-y:scroll;
}

.place .place-box {
    height: 30px;
    background-color: var(--brown-color);
    opacity: 0.8;
    color: var(--white-color);
    padding: 2px 5px;
    margin: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.place .place-name {
    font-size: 1rem;
    font-weight: bold;
}

.place .place-description {
    font-size: 0.75rem;
    font-weight: normal;
}

.place:hover {
    background-size: 110%;
}

#gallery {
    padding: 80px 5px;
    margin-bottom: 10px;
    background: var(--white-color);
}

#attractions {
    padding: 100px 5px;
    margin-bottom: 10px;
    background: var(--white-color);
}

.activity-wrapper {
    display: block;
    grid-template-columns: 1fr;
}

.activity {
    display: block;
    justify-content: space-between;
    padding: 5px;
    margin: 20px 5px;
    border-radius: 5px;
    background-color: white;
    /* border: 1px solid var(--green-color); */
}

.activity .activity-box {
    background-color: var(--brown-color);
    opacity: 0.8;
    color: var(--white-color);
    padding: 2px 5px;
    margin: 0px;
}

.activity img {
    width: 100%;
    height: 150px;
    margin-right: 20px;
    border-radius: 5px;
    object-fit: cover;
}

.activity .activity-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.activity .activity-description {
    font-size: 0.85rem;
    font-weight: normal;
}

.activity:hover {
    background-size: 110%;
}

#tours {
    padding: 100px 5px;
    margin-bottom: 10px;
    background: var(--white-color);
}

.tours-container {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: space-between;
    margin-top: 40px;
}

.tours-menu {
    width: 100%;
}

.tours-menu-item {
    border: 1px solid var(--green-color);
    border-collapse: collapse;
    min-height: 35px;
    font-size: 0.95rem;
    font-weight: bold;
    padding: 5px 5px;
    cursor: pointer;
    background-color: white;
}

.tours-menu-item:hover {
    background-color: var(--green-color);
    color: white;
    border-color: var(--green-color);
}

.tours-menu-item i {
    display: none;
    float: right;
    margin: 5px;
    color: var(--white-color);
}

.tours-menu-item:hover>i {
    color: var(--white-color);
}

#tour_content {
    margin: 10px 5px;
    padding-top: 80px;
}

.tours-wrapper {
    width: 100%;
}

.tours-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    background-color: var(--green-color);
    color: var(--white-color);
    padding: 8px;
}

.tours-image img {
    height: 120px;
    width: 100%;
    object-fit: cover;
}

.tours-description {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.itinerary-day {
    background-color: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.day-header {
    display: block;
    margin: 10px 0px;
}

.day-number {
    background-color: var(--green-color);
    color: var(--white-color);
    border-radius: 3px;
    padding: 8px 10px;
    margin-right: 10px;
    min-width: 80px;
    font-size: 1rem;
}

.day-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 10px 0px
}

.day-description {
    font-size: 0.85rem;
}

.day-photos{
    width:100%;
    overflow:scroll;
    height:200px;
}

.day-photos img{
    height:100px;
    width: 120px;
    object-fit:cover;
    margin: 10px 5px;
    padding:5px;
}

.day-photos .wide-image{
    width:180px;
    height: 100px;
}


.gallery-wrapper {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.gallery-photo {
    text-align: center;
    width: 100%;
    padding: 3px;
}

.gallery-photo img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    float: center;
    border-radius: 2px;
}

#notification_sent {
    color: var(--green-color);
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    margin-left: 10px;
    margin-bottom: 20px;
}

#notification_failed {
    color: red;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    margin-left: 10px;
    margin-bottom: 20px;
}

.error {
    color: red;
    font-size: 0.95rem;
}

#learn-more{
    border:none;
    background: #D08D66;
    color:white;
    padding: 8px 10px;
    border-radius:5px;
    display:inline-block;
    width:100%;
    text-align:center;
    cursor:pointer;
}

.modal-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98%;
    height: 95%;
    /* border: 1px solid grey; */
    /* background-color: white; */
    /* overflow: auto; */
}

#get_quote {
    display: none;
}


#get_quote_modal {
    display: none;
    min-width: 100%;
    min-height: 80%;
}


#get_quote_modal .modal-content {
    padding: 20px 20px;
}

#get_quote:checked~#get_quote_modal {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 40%);
}


@media (min-width:48em) {


    .contact-bar ul{
        display:flex;
        justify-content: space-between;
        padding: 0% 5%;
        padding-top:10px;
        padding-bottom: 10px;
    }


.modal-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 80%;
    /* border: 1px solid grey; */
    /* background-color: white; */
    /* overflow: auto; */
}

    .day-photos{
        display:grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    
    .day-photos img{
        height:200px;
        width: 100%;
        object-fit:cover;
        margin: 10px 5px;
        padding:5px;
    }
    
    .day-photos .wide-image{
        width:380px;
        height: 200px;
    }



    header {
        padding: 0px 40px;
        background: var(--white-color);
        position: fixed;
        margin: 0 auto;
        margin-top: 0;
        z-index: 3;
        display: flex;
        width: 100%;
        justify-content: space-between;
        box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    }
    header #logo {
        height: 90px;
        padding: 5px;
    }
    header .menu {
        width: 100%;
    }
    header ul {
        display: flex;
        justify-content: space-evenly;
        transition: 1s;
        color: var(--black-color);
        float: right;
    }
    header ul li {
        display: block;
        text-align: center;
        margin: 35px 2px;
        height: 0px;
        font-size: 14px;
        font-weight: bold;
    }
    header ul li a {
        letter-spacing: 1px;
        border-radius: 5px;
        padding: 5px 10px;
        transition: 1s;
    }
    header ul li a:hover {
        background-color: var(--green-color);
        color: var(--white-color);
    }
    header .cta {
        font-size: 1rem;
        margin: 0px 0px;
        padding: 5px 10px;
        border-radius: 5px;
        background-color: var(--orange-color);
        color: var(--white-color);
        border-style: none;
    }
    header .cta:hover {
        background-color: var(--green-color);
        color: white;
    }
    header .menu {
        clear: none;
        float: right;
        max-height: none;
    }
    header .menu-icon {
        display: none;
    }
    .footer {
        background-color: var(--black-color);
        padding: 60px 40px;
        margin: 0 auto;
    }
    .footer .address {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .footer .address .contacts {
        font-size: 1.1rem;
        color: var(--white-color);
    }
    .footer .address .contacts .company {
        font-size: 1.5rem;
        color: var(--white-color);
        font-weight: 900;
        margin-bottom: 20px;
        margin-left: 20px;
    }
    .footer .address .contacts i {
        color: var(--white-color);
        margin: 10px 20px;
    }
    .footer .address .social {
        display: flex;
    }
    .footer .address .social i {
        color: var(--white-color);
        margin: 10px 10px;
    }
    .footer .copyright {
        margin-top: 50px;
        text-align: right;
        color: var(--white-color);
    }
    .slider {
        width: 100%;
        border-style: solid;
        border-width: 1px;
        margin: 0 auto;
        padding-top: 100px;
        background-color: var(--white-color);
    }
    .slider .slide {
        width: 100%;
        height: var(--slider-height);
        margin: 0 auto;
        position: relative;
    }
    .slider .slide img {
        object-fit: cover;
        width: 100%;
        height: var(--slider-height);
        margin: 0 auto;
    }
    #welcome {
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: 1px;
        color: var(--white-color);
        position: absolute;
        left: 40px;
        bottom: 170px;
    }
    #welcome span {
        font-size: 4rem;
        font-weight: 900;
        color: var(--whie-color);
    }
    .outline-text {
        text-shadow: -1px 0 var(--black-color), 0 1px var(--black-color), 1px 0 var(--black-color), 0 -1px var(--black-color);
    }
    #about {
        padding: 120px 40px;
        text-align: center;
        margin: 0 auto;
        margin-bottom: 10px;
        background-color: var(--light-green-color);
        color: var(--white-color);
    }
    .section-title {
        font-size: 1.5rem;
        font-weight: 900;
        margin-bottom: 20px;
        text-transform: uppercase;
        text-align: center;
    }
    .section-subtitle {
        font-size: 1.2rem;
        font-weight: 900;
        padding: 20px;
    }
    .section-description {
        font-size: 1rem;
        line-height: 1.8rem;
        letter-spacing: 1px;
    }
    #about .section-description {
        max-width: 80%;
        margin: 0 auto;
    }
    #quote {
        padding: 20px 40px;
        margin-bottom: 10px;
        /* background: var(--green-color); */
        border-radius:10px;
    }
    #quote .section-title {
        text-align: center;
        color: white;
    }
    .form-wrapper {
        border: 1px solid var(--white-color);
        border-radius: 10px;
        padding: 20px;
        color: var(--black-color);
        background-color: white;
    }
    .quote-form {
        width: 100%;
        margin: 0 auto;
    }
    .form-box {
        width: 90%;
        margin: 0 auto;
        display: flex;
        margin-bottom: 5px;
    }
    .form-box .form-field {
        width: 100%;
        padding: 5px 10px;
        margin: 10px 0px;
    }
    .form-box .form-field input[type=button] {
        padding: 8px 40px;
        color: var(--white-color);
        background-color: var(--brown-color);
        font-weight: 900;
        border-style: none;
        border-radius: 5px;
        width: 100%;
    }
    #pax {
        display: flex;
    }
    #adults {
        margin-right: 10px;
    }
    .form-box .form-field input, .form-box .form-field select {
        width: 100%;
        height: 35px;
        border-radius: 2px;
        border: 1px solid var(--brown-color);
        /* border-style: none; */
        padding: 2px 10px;
        outline: none;
        font-size: 1rem;
        color: var(--black-color);
        background-color: var(--white-color);
    }
    .form-box .form-field label {
        display: block;
        font-size: 1rem;
        margin-bottom: 5px;
    }
    .form-box textarea {
        width: 100%;
        height: 100px;
        border-radius: 2px;
        border: 1px solid var(--brown-color);
        font-family: inherit;
        font-size: 1rem;
        color: var(--black-color);
        background-color: var(--white-color);
        padding: 5px 10px;
    }
    .copyright {
        font-size: 0.8rem;
    }
    #destinations {
        padding: 120px 40px;
        margin-bottom: 10px;
        background: var(--white-color);
    }
    .places-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .place {
        margin: 20px 15px;
        height: 280px;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        border-radius: 5px;
        transition: 3s;
        cursor: pointer;
    }
    .place:hover>.place-box {
        height: 280px;
    }
    .place .place-box {
        height: 30px;
        background-color: var(--brown-color);
        opacity: 0.8;
        color: var(--white-color);
        padding: 2px 5px;
        margin: 0px;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    .place .place-name {
        font-size: 1.1rem;
        font-weight: bold;
    }
    .place .place-description {
        font-size: 0.85rem;
        font-weight: normal;
    }
    .place:hover {
        background-size: 110%;
    }
    #gallery {
        padding: 120px 40px;
        margin-bottom: 10px;
        background: var(--white-color);
    }
    #attractions {
        padding: 120px 40px;
        margin-bottom: 10px;
        background: var(--white-color);
    }
    #attractions {
        padding: 120px 40px;
        margin-bottom: 10px;
        background: var(--white-color);
    }
    .activity-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
        background: white;
    }
    .activity {
        display: flex;
        justify-content: space-between;
        padding: 20px;
        margin: 5px 5px;
        border-radius: 5px;
        background-color: white;
        /* border: 1px solid var(--green-color); */
    }
    .activity .activity-box {
        background-color: var(--brown-color);
        opacity: 0.8;
        color: var(--white-color);
        padding: 2px 5px;
    }
    .activity img {
        width: 200px;
        height: 150px;
        margin-right: 20px;
        border-radius: 5px;
        object-fit: cover;
    }
    .activity .activity-name {
        font-size: 1.2rem;
        font-weight: bold;
    }
    .activity .activity-description {
        font-size: 0.85rem;
        font-weight: normal;
    }
    .activity:hover {
        background-size: 110%;
    }
    #tours {
        padding: 120px 40px;
        margin-bottom: 10px;
        background: var(--white-color);
    }
    .tours-container {
        margin-top: 40px;
        margin:0 auto;
        border: 1px solid var(--green-color);
        border-collapse:collapse;
        border-radius:5px;
        width:100%;
    }
    .tours-menu {
        width: 100%;
        margin: 0 auto;
        justify-content: center;
        
    }
    .tours-menu-item {
        height: 45px;
        border: 1px solid var(--green-color);
        border-collapse: collapse;
        font-size: 0.9rem;
        font-weight: bold;
        padding: 10px 10px;
        cursor: pointer;
        background-color: white;
    }
    .tours-menu-item:hover {
        background-color: var(--green-color);
        color: white;
        border-color: var(--green-color);
    }
    .tours-menu-item i {
        display: inline;
        float: right;
        margin: 5px;
        color: var(--white-color);
    }
    .tours-menu-item:hover>i {
        color: var(--white-color);
    }
    #tour_content {
        width: 98%;
        padding-top: 0px;
    }
    .tours-wrapper {
        width: 100%;
        margin-left: 40px;
        min-height: 400px;
    }
    .tours-title {
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 10px;
        background-color: var(--green-color);
        color: var(--white-color);
        padding: 8px;
    }
    .tours-image img {
        height: 280px;
        width: 100%;
        object-fit: cover;
        display:none;
    }
    .tours-description {
        margin-bottom: 10px;
        font-size: 0.95rem;
        display:none;
    }
    .itinerary-day {
        background-color: white;
        padding: 10px;
        margin-bottom: 10px;
        border-radius: 3px;
    }
    .day-header {
        display: flex;
        margin: 10px 0px;
    }
    .day-number {
        background-color: var(--green-color);
        color: var(--white-color);
        border-radius: 3px;
        padding: 8px 10px;
        margin-right: 10px;
        font-size: 1.2rem;
    }
    .day-title {
        font-size: 1.1rem;
        font-weight: bold;
        margin: 10px 0px
    }
    .day-description {
        font-size: 0.95rem;
    }
    .gallery-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .gallery-photo {
        text-align: center;
    }
    .gallery-photo img {
        width: 200px;
        height: 120px;
        object-fit: cover;
        float: center;
        margin: 5px;
        border-radius: 2px;
    }
    #notification_sent {
        color: var(--green-color);
        font-size: 1.1rem;
        font-weight: bold;
        text-align: center;
        margin-left: 10px;
        margin-bottom: 20px;
    }
    #notification_failed {
        color: red;
        font-size: 1.1rem;
        font-weight: bold;
        text-align: center;
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .error {
        color: red;
        font-size: 0.95rem;
    }
}