﻿input:focus,
select:focus, .form-control:focus,
audio:focus,
button:focus {
    outline: none !important;
    box-shadow: none !important;
}
.navbar {
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000000000000000000000000000000 !important;
    box-shadow: 4px 11px 29px -18px rgba(0,0,0,0.5);
    -webkit-box-shadow: 4px 11px 29px -18px rgba(0,0,0,0.5);
    -moz-box-shadow: 4px 11px 29px -18px rgba(0,0,0,0.5);
}
option {
    display: block;
    width: 99.85%;
    padding: 0.25rem 1.5rem;
    clear: both;
    color: #000;
    height: 39px;
    text-align: inherit;
    background-color: #fff;
    border: 1px solid #FF7304;
    border-radius: 17px;
}

select > option:hover {
    background-color: none;
    border: none;
}

body {
    font-family: 'Quicksand-Regular';
}

.slider_dv {
    background: linear-gradient( rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../Images//contant.png) no-repeat;
    background-size: cover;
    margin-bottom: 40px;
}

.heading_RPL {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 60px !important;
    font-weight: 600;
}

.about_heading {
    padding: 20px 15px 10px;
    font-weight: 600;
}

.about_title {
    color: #555555 !important;
    font-size: 40px;
}

.table tr th {
    background: #BDC8E6 !important;
    color: #fff !important;
}

.table tr td {
    color: #595959 !important;
    font-weight: 600;
}
.table tr td a{
    color: #595959 !important;
    font-weight: 600;
    text-decoration:none!important;
}
.table {
    border: none !important;
    font-size: 18px;
}

    .table td {
        padding: 1.5rem !important;
        vertical-align: top;
    }

.list-wrapper {
    padding: 15px;
    /*overflow: hidden;*/
}

.list-item {
}

    .list-item h4 {
        color: #FF7182;
        font-size: 18px;
        margin: 0 0 5px;
    }

    .list-item p {
        margin: 0;
    }

.simple-pagination ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    text-align: center;
}

.simple-pagination li {
    display: inline-block;
    margin-right: 5px;
}

    .simple-pagination li a,
    .simple-pagination li span {
        color: #000000;
        padding: 8px 12px;
        text-decoration: none;
        border: 1px solid #EEE;
        background-color: #FFF;
        box-shadow: 0px 0px 10px 0px #EEE;
        font-weight: 600;
    }

.simple-pagination .current {
    color: #FFF;
    background-color: #FF7A00;
    border-color: #FF7182;
}

.simple-pagination .prev.current, .simple-pagination .next.current {
    background: #FFF;
    color: #000000;
    border: 1px solid #EEE;
    font-weight: 600;
}

.first_td {
    border-left: none !important;
}

.last_td {
    border-right: none !important;
}

.selct_container {
    padding: 32px;
}

.container__title {
    font-size: 25px;
    font-weight: 600;
    margin: 16px;
    text-align: center;
}

.form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.selectbox {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    max-width: 300px;
}

.option-container {
    background-color: #EDF1FA;
    color: #5D71A6;
    width: 100%;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    font-weight: 600;
}

.selectbox--active .option-container {
    max-height: 240px;
    opacity: 1;
    overflow-y: scroll;
    z-index: 99999999999999999999 !important;
}

.selectbox__displayWord,
.option-container__option {
    padding: 12px 24px;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #B8C3DD;
}

.selectbox__displayWord {
    position: relative;
    background-color: #BDC8E6;
    color: #FFFFFF;
    border-radius: 22px;
    height: 50px;
}

    .selectbox__displayWord::after {
        position: absolute;
        top: 50%;
        right: 16px;
        content: "";
        background: url('../Images//mdi-light_chevron-down.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        height: 35px;
        width: 35px;
        color: #f5f6fa;
        transform: translateY(-50%);
        transition: all 0.4s;
    }

.selectbox--active .selectbox__displayWord::after {
    transform: translateY(-50%) rotateZ(180deg);
}

.selectbox--unselect .selectbox__displayWord {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.selectbox--shake {
    animation: shake 0.3s forwards;
}

.option-container {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
}

.option-container__option:hover {
    background-color: var(--select-theme-hover);
}

.option__radio {
    display: none;
}

.option__label {
    cursor: pointer;
    font-size: 18px;
}

.form__submit-button {
    height: 40px;
    padding: 12px;
    outline: 0;
    border: none;
    border-radius: 8px;
    margin-left: 20px;
    background-color: rgb(187, 67, 59);
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

    .form__submit-button:hover {
        background-color: rgb(255, 252, 241);
        color: black;
    }

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.form-control {
    background: #FF7304 !important;
    border-radius: 17px;
    color: #fff;
    width: 190px;
    margin: 0px auto !important;
}
/*option {
    background:#ffa450;
    color: #fff;
}*/
@media only screen and (max-width: 600px) {
    .heading_RPL {
        padding-top: 70px;
        padding-bottom: 60px;
        font-size: 23px;
    }
}

.dropdown-toggle::after {
    display: none !important;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.dropdown-toggle:hover {
    color: #fff !important;
}

.arrow_img {
    width: 25px;
}

.dropdown-toggle:focus {
    color: #fff !important;
    border: none !important;
    text-decoration: none !important;
}

.dropdown a:focus {
    background: none !important;
}

.bottom_dv {
    background: rgba(0, 0, 0, 0.6);
    height: 75px;
    position: fixed;
    bottom: 0px !important;
    width: 100%;
    color: #fff !important;
}

.tbl_audio {
    margin-top: 13px;
}

.sel_item {
    display: block;
    width: 99.85%;
    padding: 0.25rem 1.5rem;
    clear: both;
    /* font-weight: 400; */
    color: #fff;
    height: 39px;
    text-align: inherit;
    /* white-space: nowrap; */
    background-color: #FF7304;
    border: 1px solid #FF7304;
    border-radius: 17px;
}
