﻿.headerMenu-container {
    position: absolute;
    font-size: 12px;
    top: 100%;
    right: 0px;
    transition: 0.5s;
    z-index: 1110;
    -webkit-box-shadow: 0px 2px 22px 0 rgba(42, 87, 136, 0.50);
            box-shadow: 0px 2px 22px 0 rgba(42, 87, 136, 0.50);
    min-width: 250px;
    opacity: 0;
}

.headerMenu {
    height: 100%;
    transition: 0.5s;
    padding: 10px 0px;
    text-align: left;
}

.headerMenu a,
.headerMenu input,
.headerMenu button {
    padding: 10px 12px;
    border-radius: 5px;
    color: gray;
    background-color: transparent;
    text-align: left;
    margin-bottom: 1px;
    width: 100%;
}

.headerMenu a:hover,
.headerMenu input:hover,
.headerMenu button:hover {
    background: rgba(0, 0, 0, 0.2);
    color: white;
}

.headerMenu button:disabled,
.headerMenu button[disabled] {
    background-color: green;
    cursor: not-allowed;
    color: lightgray;
}
