﻿/*@media only screen and (max-width: 768px) {
    .dropdown {
        position: relative;
        display: inline-block;
        float: right !important;
        width: 100%;
    }

    .dropdown-content{
        width: 100% !important;
    }
}*/

.visually-hidden {
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    position: absolute;
}

/* Dropdonw menu*/
.dropdown {
    position: relative;
    display: inline-block;
    float: right !important;
}

.dropdown-content {
    margin-left: -145px;
    align-items: flex-end;
    display: none;
    position: absolute;
    background-color: #F7F7F7;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: -1;
}
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
        .dropdown-content a:nth-child(even) {
            background-color: white;
        }
        .dropdown-content a:hover {
            background-color: #ddd;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px solid #000000;
    border-right: 4px solid transparent;
    border-bottom: 0 dotted;
    border-left: 4px solid transparent;
    content: "";
}

/* Modal */
.modal-h {
    z-index: 100 !important;
    padding: 15px 25px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1;
}

.modal-h-content {
    position: fixed;
    top: 225px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 3rem 3rem;
    width: 45rem;    
}

    .modal-h-content .modal-heading {
        font-size: 2.2rem;
        font-weight: bold;
        text-align: center;
    }

    .modal-h-content input[type=text] {
        height: 35px;
        color: black !important;
        padding: 12px 20px !important;
        margin: 0 10px 0 0 !important;
        display: inline-block !important;
        border: 0px solid #ccc !important;
        border-radius: 0px !important;
        box-sizing: border-box !important;
        background-color: #EFEFEF !important;
    }

    .modal-h-content input[type=button] {
        min-width: 150px;
        background-color: #008894;
        color: white;
        font-weight: lighter;
        height: 35px;
        min-height: 35px;
        padding: 10px 10px;
        border-radius: 0px;
        margin: 0 0 0 7px;
    }

    .close-button {
        float: right;
        width: 1.5rem;
        line-height: 1.5rem;
        text-align: center;
        cursor: pointer;
        font-size: 3.0rem;
    }

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.balance-wrapper {
    color: black !important;
}