.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.8);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay hr {
    position: relative;
    border-top: 2px solid white;
    width: 20%;
    left: 40%;
    margin: 2px;
    margin-top: 10px;
}

.overlay-content {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 250px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 20px;
    color: #bbb;
    display: block;
    transition: 0.2s;
    z-index: 12;
}

.overlay .aasp {

    font-size: 20px;
    color: #fff;
    display: block;
    transition: 0.3s;
    margin-bottom: auto;
    font-weight: 700;
    text-decoration: wavy;
}

.overlay a:hover,
.overlay a:focus {
    color: #ff6b6b !important;
}


.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px
    }

    .overlay p {
        font-size: 20px
    }

    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

@media screen and (max-width: 640px) {
    .overlay a {
        font-size: 15px
    }
}

.icon-bar {
    max-height: 100vh;
    overflow: auto;
}

.closebtn {
    padding: 5px;
    color: white;
    font-weight: bold;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.closebtn:hover {
    font-size: 25px;
}

.col {
    -ms-flex: auto;
    flex: auto;
}

@media screen and (max-width: 960px) {
    .row {
        display: contents;
        width: 100%;
    }

    .col {
        border: 0px !important;
        width: 100% !important;
    }
}

.overlay select {
    color: white;
    padding: 5px;
    width: 70%;
    margin-left: 15% !important;
    border: 1px solid #fff;
    height: auto;
}

.popuptext {
    width: 180px;
    padding: 5px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: fixed;
    z-index: 1000;
    top: 200px;
    left: 70px;
}

/* Toggle this class - hide and show the popup */
.show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.hide {
    visibility: hidden;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}