@import url("roottheme.css");

button:disabled {
    cursor: not-allowed;
    pointer-events: all !important;
  }

.ps-succs-content h5{
    color: green;
}

.ps-succs-content p{
    color: var(--tm-secondry-clr);
}

.error{
    color: red !important;
    -webkit-text-stroke: thin;
    -moz-text-stroke: thin;
    margin-bottom: 0px !important;
}
.text-frm-cptl{
    text-transform: uppercase !important;
}
.ps-rlg__fmr .form-control {
    height: 40px !important;
}

.ps-rlg__fmr .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 #ee9393;
    border-color: var(--tm-third-clr);
}

.form-group {
    margin-bottom: 1.5rem;
}

.fm-lable{
    font-size: 13px;
    font-weight: 400;
    -webkit-text-stroke: thin;
    -moz-text-stroke: thin;
    color: var(--tm-secondry-clr);
}

.form-radio {
    position: relative;
    margin-bottom: 15px;
}
.radio-inline {
    display: inline-block;
    margin-right: 20px;
}
.form-radio label {
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
    color: #333;
    display: block;
    line-height: 1.8;
}
.form-radio input {
    width: auto;
    opacity: .00000001;
    position: absolute;
    left: 0;
}
.radio .helper {
    position: absolute;
    top: -0.15rem;
    left: -1.25rem;
    cursor: pointer;
    display: block;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #999;
}

.radio .helper::after, .radio .helper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    margin: 0.25rem;
    width: 1.9rem;
    height: 1.9rem;
    -webkit-transition: -webkit-transform .28s ease;
    transition: -webkit-transform .28s ease;
    transition: transform .28s ease,-webkit-transform .28s ease;
    border-radius: 50%;
    border: 0.255rem solid #01a9ac;
}

.radio .helper::after {
    -webkit-transform: scale(0);
    transform: scale(0);
    background-color: #01a9ac;
    border-color: #01a9ac;
}

.radio input:checked~.helper::before {
    color: #01a9ac;
}
.radio input:checked~.helper::after {
    -webkit-transform: scale(.5);
    transform: scale(.5);
}