.tooltip {
    position: absolute;
    display: inline;
    cursor: pointer;
}

.tooltip:before,
.tooltip:after {
    position: absolute;
    content: '';
    opacity: 0;
    transition: all 0.4s ease;
}

.tooltip:before {
    border-width: 10px 8px 0 8px;
    border-style: solid;
    border-color: black transparent transparent transparent;
    top: -6px;
    transform: translateY(20px);
    margin-left: 9px;
}

.tooltip:after {
    content: attr(data-tooltip);
    background: black;
    width: 236px;
    height: 50px;
    font-size: 10px;
    font-weight: 300;
    top: -74px;
    left: -11px;
    padding: 10px;
    border-radius: 5px;
    letter-spacing: 1px;
    transform: translateY(20px);
    color: white;
}

.tooltip:hover::before,
.tooltip:hover::after {
    opacity: 1;
    transform: translateY(-2px);
}

.tooltip img {
    position: absolute;
    display: inline;
    width: 20px;
    height: 20px;
    margin: 4px 7px;
}

@keyframes shake {
    0% {
        transform: rotate(2deg);
    }
    50% {
        transform: rotate(-3deg);
    }
    70% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

#anim {
    display: inline;
}

#anim:hover {
    animation: shake 500ms ease-in-out forwards;
}

.container{
    max-width: 1000px;
    padding: 6px 6px 6px 6px;
    clear:both;
    overflow: hidden;
    position: relative;
}
.logo{
    width: 164px;
    height: 148px;
    float:left;
}
.message{
    margin-top: 2%;
    margin-left: 5%;
    text-align: right;
    float: left;
    vertical-align: bottom;
}
.message p{
    font-size: 36px;
    margin: 0;
    color: #777777;
}

.okey-modal-wrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: #00000038;
    z-index: 99999;
}
.okey-inner {
    background-color: #1A1E21;
    color: aliceblue;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: -150px auto 0;
    width: 240px;
    height: 215px;
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.modal-header {
    font-size: 13px;
}
.okey-modal-body {
    border-top: 1px solid #ccc;
    padding: 10px 0;
    margin: 10px 0;
}

.okey-modal-body input[type=checkbox]{
    border-radius: 4px;
}

.okey-modal-body .okeyCuiContent {
    display: none;
    margin-top: 5px;
}
.okey-modal-body .okeyCuiContent #okeyCuiLabel{
    display: inline-block;
    font-size: 15px;
    padding-left: 17px;
}
.okey-modal-body .okeyCuiContent input{
    margin-bottom: 4px;
    margin-left: 17px;
    width: 90%;
    margin-top: 4px;
}
.okey-modal-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
}
.okey-modal-ok {
    color: white;
    display: inline-block;
    background: #28a745;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    /*padding: .375rem .75rem;*/
    border-radius: .25rem;
    transition: color .15s;
    font-size: 10px;
    height: 26px;
}
.okey-modal-cancel {
    margin-right: 10px;
    color: white;
    display: inline-block;
    background: #dc3545;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    /*padding: .375rem .75rem;*/
    border-radius: .25rem;
    transition: color .15s;
    font-size: 10px;
    height: 26px;
}

.alert-danger {
    text-align: center;
}


.loader.overlay img {
    width: 75px;
    margin: auto;
    display: flex;
}

.loader.overlay {
    display: flex;
    position: fixed;
    top: -10px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 99999;
    opacity: 0.5;
    padding: 10px;
    visibility: hidden;
    justify-content: center;
    align-items: center;
}