
.thumbs-img{
    transition: all 1s;
}

.thumbs-img:hover {
    transform: scale(1.2);
}

.simulation_comment_load{
    width: 100%;
    text-align: center;
    color: #999;
    padding: 10px;
    cursor: pointer;
    font-size: 90%
}

.simulation_comment_load:hover{
    color: #c7c7c7;
}

.radio_class{
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border: 1px solid #3898ec;
}

.radio_class:checked {
    -webkit-appearance: none;
    background-color: #fff;
    position: relative;
    border: 1px solid #3898ec;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
}

.radio_class:checked::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3898ec;
}

.checkbox_class {
    width: 16px;
    height: 16px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: 16px;
    position: relative;
}

.checkbox_class::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid #CACDCF
}

.checkbox_class:checked::before {
    content: "\2610";
    background-color: #3898ec;
    color: #3898ec;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 1px solid #fff;
    font-size: 12px;
    font-weight: bold;
}

.my_loader {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    z-index: 999;
    top: 42%;
    left: 45%;
    margin: 0 auto;
    animation: spin 4s linear infinite;
}

.my_loader:before {
    content: "....";
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border-radius: 50%;
    border: 6px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(to right, #27b1d0, #eca071), linear-gradient(90deg, #9848f5, #5489f3);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}