.select_arrow {
    margin-top: 13px;
    float: left;
    width: 31%;
    margin-left: 20px;
}

.formContainer {
    padding: 0px 20px;
    border: solid 1px #8CCC31;
    margin-bottom: 25px;
    margin-top: 10px;
    background-color: #8ece340d;
}

.mandatary {
    color: red
}

#score {
    margin-bottom: 10px;
}

p {
    text-align: justify;
}

.text-success {
    color: green;
}
.select_content {
    width: 58%;
    float: left;
}

.select_form {
    width: 40%;
    float: right;
}

@media screen and (max-width: 768px) {
    .select_arrow {
        width: 100%;
        margin-left: 0px;
    }

    .m-btn {
        text-align: center;
    }

    .m-btn button {
        margin-top: 65px;
    }

    .select_content {
        width: 100%;
    }

    .select_form {
        width: 100%;
    }
}

.m-btn button {
    margin-top: 135px;
}

.radio-border {
    padding: 10px;
    border: solid 1px rgba(128, 128, 128, 0.546);
    margin-bottom: 25px;
    margin-top: 10px;
}


#request_type {
    border-radius: 0px !important;
    display: block !important;
    line-height: 1.5 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    max-height: 50px !important;
    padding: 0.813rem 1rem;
    width: 100%;
    background-color: #f5f6fa !important;
    border: 1px solid #f5f6fa !important;
    border-bottom: 1px solid #55ae20 !important;
    outline: none;
    letter-spacing: 0.5px !important;
    box-shadow: none !important;
}

.center {
    margin: auto;
    width: 50%;
    border: 3px solid green;
    padding: 10px;
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 150ms infinite linear;
    -moz-animation: spinner 150ms infinite linear;
    -ms-animation: spinner 150ms infinite linear;
    -o-animation: spinner 150ms infinite linear;
    animation: spinner 150ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

body .header h4.site-title,
body .header p.site-description {
    color: #252525;
}

.w-100 {
    width: 100%;
}

.w-98 {
    width: 98%;
}

.dropdowncityList {
    height: 80px;
}

.text-center {
    text-align: center;
}

.mt-65 {
    margin-top: 65px;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}


.font-16{
    font-size: 16px;
}
.m-5{
    margin: 5px 0px;
}
.font-500{
    font-weight: 500;
}

select[multiple] {
    border-radius: 0px !important;
    /* display: block !important; */
    line-height: 1.5 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    max-height: 50px !important;
    padding: 0.813rem 1rem;
    width: 100%;
    background-color: #fff !important;
    border: 1px solid #f5f6fa !important;
    outline: none;
    letter-spacing: 0.5px !important;
    box-shadow: none !important;
}


/* ////// */
.font-20{
    font-size: 20px;
    font-weight: 600;
}
.box {
    width: 30%;
    background-color: #EBF5E6;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    color: #54AF1A;
    display: inline-block;
    box-sizing: border-box;
    flex: 0 0 30%;
    border: 1px solid #ccc;
}
.box-item {
    display: flex;
    flex-wrap: wrap;
}

.subpoint {
    margin: 0;
}

.box h3,
.box p {
    display: inline-block;
    margin: 0;
}
.mr-10{
    margin-right: 10px !important;
}

.ml-35{
    margin-left: 35px;
}

/* Media query for mobile view */
@media (max-width: 768px) {
    .box {
        width: 100%;
        flex: 0 0 100%; /* Adjust the width of each box for larger screens */
    }
}

/* file css */
img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

.popup {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}

.popup-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888888;
    width: 30%;
    font-weight: bolder;
    border-radius: 10px;
}

.popup-content button {
    display: inline;

    margin: 0 auto;
    height: 35px;
    margin-top: 10px;
    width: 100px;
    padding: 0px 10px;
}

.show {
    display: block;
}

h1 {
    color: green;
}

.err {
    color: red;
    font-weight: 500;
}

.popup-content table {
    border: none !important;
}

.popup-content table tr td {
    padding: 0px !important;
    border: none !important;
}


.popup-content input,select {
    margin-top: 20px;
    border: 1px #ccc solid !important;
    border-radius: 5px;
    height: 33px;
}

@media (max-width: 570px) {
    .popup-content {
        width: 80%;
        margin-top: 103px;
    }

}

#closePopup {
    background: #9f1f1f;
}

.avldiv {
    font-size: 20px;
    font-weight: 500;
    color: rgb(13 12 68);
    margin-bottom: 10px;
}

#avldiv {
    border: 2px solid;
    text-align: center;
    padding: 20px;
    margin: 40px;
    border-radius: 20px;
}

body .header h4.site-title,
		body .header p.site-description {
			color: #252525;
}
.ms-options-wrap button {
    background-color:#fff !important;
}

.av-py-default{
    padding:  0px !important;
}

label {
    font-size: 14px !important;
}

input, select, .dropdowncityList {
    border-bottom: 1px solid #55ae20 !important;
}

h4{
    font-size: 18px !important;
}
.select_arrow_100 {
    clear: both;
    margin-top: 40px !important;
}

.center-button {
    clear: both;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 14% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
