﻿#loading {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #fff;
    z-index: 101;
    text-align: center;
}

#loading-content {
    position: absolute;
    top: 50%;
    left: calc(50% - 40px);
    text-align: center;
    z-index: 100;
}

.loader {
    border: 5px solid #f3f3f3;
    /* Light grey */
    border-top: 5px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide {
    display: none !important;
}


.show {
    display: flex !important;
}


.button-confirm {
    position: fixed;
    right: 0;
    bottom: 30px;
}

.predict-image-container {
    width: 100px;
    height: 150px;
    color: gray;
    background: gray;
    border-radius: 10px;
    margin: 5px;
    margin-bottom: 15px;
    padding-top: 1px;
    padding: 2px;
    padding-top: 2px;
}

.predict-image-container .predict-img {
    width: 100%;
    left: 0px;
    /*        position: absolute;*/
    border-radius: 10px;
    height: 100%;
}

.choosing {
    background: green;
    /*        padding-top: 3px;*/
}

.btn-style {
    min-width: 100px;
    text-align: center;
}


.text-white {
    color: white;
}

.dropdown-active {
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(290px, 474px) !important;
}

.dropdown-inactive {
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(213px, 474px) !important;
}

.modal-message {
    color: white;
    font-size: 18px;
    text-align: center;
    margin: 10px;
}

.modal-error {
    color: red !important;
    font-size: 16px !important;
    font-weight: 600;
    text-align: center;
}


.predict-box-error {
    text-align: center;
    color: white;
    margin-top: 50px;
    font-size: 16px;
}

.pack-box {
    /*    text-align: center;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    padding-top: 15px;
    padding-bottom: 15px;


    border: 1px solid white;
    background: center;
    color: white;*/
}

.pack-box h3 {
    font-weight: 700;
}

.pack-box h5 {
    margin-top: 5px;
}


.active {
    background: pink;
    color: black;
    border: none;
}

.claim-button-inactive {
    background: dimgray;
    color: white;
}


.pagnation-active {
    border-radius: 100px;
    padding: 2px;
    background: black;
    width: 23px;
    /* text-align: center; */
    display: block;
}

.floating-box {
    position: absolute;
    top: -15px;
    right: -20px;
    background: red;
    padding: 5px;
    border-radius: 100px;
    width: 35px;
    border: 1px solid white;
    color: white;
}

.box-margin-b {
    margin-bottom: 5px;
}