/* The sidebar menu */
.sidebar {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: absolute; /* Stay in place */
    z-index: 4; /* Stay on top */
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0);
    overflow-x: auto;/*  Disable horizontal scroll */
    padding-top: 30px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
    color: #fff;
}

.open {
    width: 225px;
}

.header {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: block;
    text-align: center;
    transition: 0.3s;
}

.select {
    padding: 2px 6px;
    position: relative;
    display: inline-block;
    width: 100%;
    /* margin: auto; */
    color: rgb(149, 149, 149);
    border-radius: 8px;
}
.select select {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 8px 10px 8px 15px;
    border-radius: 3px;
    outline: 0;
    border: 0;
    background: #ffffff;
    color: rgb(0, 0, 0);
    appearance: none;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select_arrow {
    position: absolute;
    top: 14px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: rgb(0, 0, 0) transparent transparent transparent;
}
#languageSelect {
    text-align: start;
}

.sidebarButton, .bottomButtons {
    z-index: 4;
    padding-left: 10px;
    padding-right: 10px;
    margin: 10px 0;
    position: relative;
    display: block;
    width: 100%;
    color: rgb(0, 0, 0);
    border-radius: 10px;
}
.bottomButtons {
    bottom: 0;
}
.sidebarButton a, .bottomButtons a {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 8px 12px;
    margin-bottom: 5px;
    border-radius: 3px;
    background: #ffffff;
    color: rgb(0, 0, 0);
    font-size: 15px;
    appearance: none;
    text-align: center;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.sidebarButton a:hover , .bottomButtons a:hover {
    background: rgb(225, 225, 225);
}


.sidebar-line {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
}
.menu-option {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    display: block;
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #C32E2E;
}

input:focus + .slider {
    box-shadow: 0 0 1px #C32E2E;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


/*Share Link*/
.bottomShare-wrapper {
    z-index: 4;
    padding-left: 10px;
    padding-right: 10px;
    /* position: absolute; */
    bottom: 0;
    display: block;
    width: 100%;
    color: #fff;
    border-radius: 5px 5px 5px 5px;
}
.header-share {
    display: flex;
    flex-direction: row;
    justify-content:center;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: inline-flex;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.header-share i {
    padding: 2px 6px 2px 4px;
}
.fa {
    padding: 6px;
    font-size: 30px !important;
    width: 33px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
}

.social-links-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    font-size: 27px;
    margin-top: 10px;
    margin-bottom: 15px;
}

.fa:hover {
    opacity: 0.7;
}
.fa-envelope {
    color: #FF4343;
}
.fa-facebook-f {
    color: #3A59C9;
}
.fa-twitter {
    color: #44C0DB;
}
.fa-google {
    color: #3A59C9;
}
.fa-linkedin-in {
    color: #3A59C9;
}
.fa-instagram {
    background: #125688;
}
.fa-reddit-alien {
    color: #FF7A00;
}

.link-container{
    width: 100%;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 40px;
    background-color: #fff;
    overflow: hidden;
    padding-left: 10px;
    margin-bottom: 10px;
    margin-top: 4px;
}
.link {
    text-decoration: underline;
    font-size: 16px;
    width: 100%;
    text-align: center;
    cursor: pointer;
}
.copy-btn{
    right: 0;
    cursor: pointer;
    background: #000;
    color: #fff;
    border: none;
    height: 100%;
    width: 30%;
    text-transform: capitalize;
    font-size: 16px;
    position: relative;
    display: inline-block;
}
.copy-btn:hover {
    background: rgb(0, 5, 166);
}

.share_tour {
    margin-left: 25px;
}
.share-link {
    text-decoration: underline;
    font-size: 20px;
    width: 100%;
    text-align: center;
}
.share-icon {
    text-decoration: underline;
    font-size: 20px !important;
}

.email-container {
    width: 100%;
    position: relative;
    height: 40px;
    display: none;
    align-items: center;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 10px;
}
.email{
    width: 80%;
    height: 100%;
    line-height: 40px;
    color: #fff;
    border-radius: 40px 0 0 40px;
    font-size: 18px;
    padding-left: 10px;
    border: 0;
    font-family: Arial, serif;
    -webkit-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
}

#shoppingCart p{
    color: white;
}
#sideBarSettings, #sideBarSearch {
    height: 90%;
    position: relative;
    /* overflow: scroll; */
}
@media screen and (max-width: 550px) {
    .sidebar {
        overflow: scroll;
    }
    .menu-option {
        font-size: 1em;
    }
}

@media screen and (max-width: 1030px) {
    .sidebar {
        font-size: 1vw;
    }
    .sidebarButton a {
        font-size: 3em;
    }
    .open {
        width: 50%
    }
    .select select {
        font-size: 2em;
        padding: 8px 10px 8px 4px;
    }
    .menu-option {
        font-size: 3em;
    }
    .switch {  
        margin-right: 6px;
        width: 40px;
        height: 20px;
    }
    .slider::before {
        height: 13px;
        width: 13px;
        left: -2px;
    }
    .bottomShare-wrapper {
        padding: 0px;
    }
    .bottomShare-wrapper > hr {
        display: none;
        
    }
    .header-share {
        font-size: 2vw;
    }
    .header-share i {
        font-size: 2vw;
    }
    .radio::before {
        width: 1.5vw  !important;
        height: 1.5vw  !important;
    }
    .radio::after {
        width: 1vw  !important;
        height: 0.5vw  !important;
        top: 0.4vw  !important;
        left: 0.4vw  !important;
        font-weight: lighter;
    }
    .question span {
        margin-left: 3vw !important;
        font-size: 2vw !important;
    }
    .share_tour {
        display: flex;
        flex-direction: row;
        justify-content: center;    
        align-items: center;
        margin-left: 0px;
    }
    .social-links-container {
        font-size: 18px;
    }
}
/* @media only screen and (max-width: 1300px) {
    .menu-option {
        font-size: 2em;
    }
    .sidebar {
        font-size: 1em;
    }
    .sidebarButton a {
        font-size: 2em;
    }
    .open {
        width: 50%
    }
} */