/* The sidebar menu */
.sidebar {
    padding: 0;
    padding-top: 3em;
    overflow: visible;
    display: flex;
    flex-direction: column;
    text-align: center;

    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;
    /* border-radius: 20px; */
    /* border: #000000 solid 0px; */
    background: white;
    /* padding-top: 2.5em; */
    font-family: Arial Rounded MT Bold,Helvetica Rounded,Arial,sans-serif;
    overflow-x: auto; /* Disable horizontal scroll */
    /* padding-top: 20px; Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
    color: #1C5828;
}

.header {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: 25px;
    display: block;
    text-align: center;
    transition: 0.3s;
}

.select {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
    width: 100%;
    color: #000000;
    border-radius: 5px 5px 5px 5px;
}
.select select {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
    outline: 0;
    border: 0;
    background: #1C5828;
    color: white;
    appearance: none;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select select:hover,
.select select:focus {
    color: #000000;
    background: #ffffff;
}
.select_arrow {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #000000 transparent transparent transparent;
}
#languageSelect {
    width: 95px;
    text-align: start;
}

.bottomButtons {
    z-index: 4;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    color: #000000;
    border-radius: 5px 5px 5px 5px;
}
.bottomButtons a {
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 10px 15px;
    margin-bottom: 5px;
    background: #ffffff;
    color: #000000;
    appearance: none;
    text-align: center;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.bottomButtons a:hover {
    background: rgb(205, 205, 205);
}


.sidebar-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px;
}

.menu-option {
    text-align: left;
    text-decoration: none;
    font-size: 16px;
    display: block;
    text-align: center;
    padding: 8px 8px 8px 8px;
    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: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

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 {
   bottom: 0;
    left: 0;
    z-index: 4;
    padding: 10px 10px;
    margin-bottom: 4vw;
    width: 100%;
    min-height: 120px;
    color: #ffffff;
    /* background-color: #00539B; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.bottomShare-wrapper::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../img/footer_watermark.svg");
    content: '';
    z-index: -1;
}
.header-share {
    text-decoration: none;
    font-size: 30px;
    color: #ffffff;
    display: inline-flex;
    text-align: center;
    margin: 10px 0;
}
.header-share i {
    padding: 2px 6px 2px 4px;
}
.fa {
    padding: 6px;
    font-size: 20px !important;
    width: 32px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
    z-index: 5;
    cursor: pointer;
}
.fa:hover {
    opacity: 0.7;
}
.fa-envelope {
    background: #EA1D2E;
    color: white;
}
.fa-facebook {
    background: #3B5998;
    color: white;
}
.fa-twitter {
    background: #55ACEE;
    color: white;
}
.fa-google {
    background: #dd4b39;
    color: white;
}
.fa-linkedin {
    background: #007bb5;
    color: white;
}
.fa-instagram {
    background: #125688;
    color: white;
}
.fa-reddit {
    background: #ff5700;
    color: white;
}

.link-container{
    width: 100%;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 40px;
    border-color: #000;
    border-style: solid;
    border-width: 3px;
    padding-left: 7px;
    background-color: #fff;
    overflow: hidden;
    /* padding: 0 10px; */
    margin-bottom: 10px;
    margin-top: 4px;
}
.link{
    width: 80%;
    height: 100%;
    line-height: 40px;
    color: #000;
    border-color: #000;
    border-width: 1px;
    border-radius: 40px 0 0 40px;
    font-size: 18px;
}
.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-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: #000;
    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;
}
@media screen and (min-height: 300px) {
    .bottomShare-wrapper {
        position: absolute;
    }
}