﻿.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.h-screen-auto {
    height: 100dvh;
    height: 100vh;
}


.w-full {
    width: 100%;
}

.w-screen {
    width: 100vw;
}

.w-screen-auto {
    width: 100dvw;
    width: 100vw;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-center {
    background-position: center;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.copyright-text {
    font-size: 0.875rem;
}

.gray-text {
    color: #a1a1a1;
}

.loading-mssg {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.custom-control-input:checked ~ .customs.custom-control-label::before {
    color: #fff;
    border-color: rgb(40 167 69) !important;
    background-color: rgb(40 167 69) !important;
    box-shadow: none;
}

.custom-switch .custom-control-input:disabled:checked ~ .customs.custom-control-label::before {
    background-color: rgb(40 167 69 / 50%) !important;
}