#hloverlay{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    opacity: 0.5;
    background: #ccc;
    z-index: 9999999999999;

}
#hlloader{
    position: fixed;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: rotation 2s infinite linear;
    opacity: 1 !important;
    z-index: 9999999999999;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}
.text-right{
    text-align: right !important;
}
.select2-container--default .select2-selection--single{
    height: 45px;
    padding: .375rem .75rem;
    line-height: 1.5;
    border-color: #ddd;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    padding: unset;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    margin-top: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height: 2;
}

@media only screen and (min-width: 100px) {
    .tablet{
        display: none;
    }
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
}
@media only screen and (min-width: 425px) {
    .tablet{
        display: none;
    }
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
}
@media only screen and (min-width: 768px) {
    .tablet{
        display: block;
    }
    .mobile{
        display: none;
    }
    .desktop{
        display: none;
    }
}
@media only screen and (min-width: 1024px) {
    .desktop{
        display: block;
    }
    .tablet{
        display: none;
    }
    .mobile{
        display: none;
    }
}
img {
    max-width: 100%;
    transition: transform 300ms ease;
}
img:hover {
    transform: scale(1.03);
}