/* modal styles starts*/

.template_modals .modal-dialog {
    max-width: 630px;
}

.template_modals .modal-content {
    border-radius: 0px;
}

.template_modals .modal-header {
    text-align: center;
    display: block;
    padding-top: 44px;
    padding-bottom: 5px;
}

.template_modals .modal-body {
    padding: 0px 45px;
}

.template_modals .modal-title {
    font-size: 20px;
}

.template_modals input, .template_modals select {
    border: 0.66px solid #A3A6AA !important;
    border-radius: 12.5px !important;
    margin-bottom: 10px;
    font-weight: 100 !important;
    font-size: 15px !important;
    min-height: 35px;
    height: 35px;
    padding: 0px 19px;
    line-height: 34px !important;
}

.template_modals p {
    font-size: 18px;
}

.template_modals label {
    font-weight: 600;
    font-size: 16px !important;
    margin-bottom: 0px;
}

.template_modals .form-group {
    margin-bottom: 30px;
}

.template_modals .permissions h5 {
    font-size: 20px;
    font-weight: 900;
}

.template_modals .modal-footer button {
    background-color: #00568F;
    font-size: 14.5px;
}

.template_modals .modal-footer button.sky-color {
    background-color: #549AC9;
}

.template_modals .modal-footer {
    display: block;
    padding: 0px 30px 45px 30px;
}

.template_modals #search-icon-input {
    position: relative;
}

.template_modals #search-icon {
    position: absolute;
    right: 13px;
    pointer-events: none;
    bottom: 9px;
    width: 16px;
}

.template_modals #dropdown-caret-icon {
    position: absolute;
    right: 13px;
    pointer-events: none;
    bottom: 16px;
    width: 12px;
}

.permissions {
    margin-bottom: 30px;
    border: none;
}

.permissions thead th {
    border: none;
}

.permissions td, .permissions th {
    font-size: 15px;
    border: none;
    padding: 4px 0px;
}

.tooltip p {
    font-size: 12px !important;
    text-align: left;
    line-height: 20px;
}

.tooltip-inner {
    max-width: 350px !important; /*define whatever width you want*/
}

.template_modals .badge {
    width: 16px;
    height: 16px;
    align-items: center;
    display: inline-grid;
    vertical-align: super;
    background-color: #929292;
    font-size: 10px;
    align-content: center;
}

.template_modals .hidden-lg {
    display: none;
}

/* ------dropdown styles-----*/
/*the container must be positioned relative:*/
.custom-select-style {
    position: relative;
    font-family: Arial;
}

.custom-select-style select {
    display: none; /*hide original SELECT element:*/
}

.select-selected {
    background-color: #fff;
    border: 0.66px solid #A3A6AA !important;
    border-radius: 12.5px !important;
    color: #5E6A71;
    line-height: 34px !important;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 10px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
    color: #5E6A71;
    border: 2px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    min-height: 35px;
    font-size: 15px;
    font-weight: 100;
    padding: 0px 17px;
    font-family: "Montserrat", sans-serif;
}

.select-items div {
    padding: 15px 10px;
    font-weight: 100;
    line-height: 1.5;
}

.select-items div:last-child {
    border: none;
}

/*style items (options):*/
.select-items {
    position: absolute;
    border: 1px solid #E1E1E1;
    background-color: rgba(249, 249, 249, 0.97);
    padding: 0px 20px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

/*-----checkbox styles------*/
.custom-checkbox {
    position: relative;
    cursor: pointer;
    height: 20px;
    width: 20px;
}

/* Hiding the initial checkbox */
.template_modals input[type=checkbox] {
    visibility: hidden;
    min-height: 0px;
}

/* Creating a custom checkbox based on demand */
.inner-check {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: white;
    border: 2.3px solid #549AC9;
    box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.38);
}

/* Specify the background color to be shown when checkbox is active */
.custom-checkbox input:active ~ .inner-check {
    background-color: white;
}

/* Specify the background color to be shown when checkbox is checked */
.custom-checkbox input:checked ~ .inner-check {
    background-color: #549AC9;
}

/* Checkmark to be shown in checkbox. It is not be shown when not checked */
.inner-check:after {
    content: "";
    position: absolute;
    display: none;
}

/* Display checkmark when checked */
.custom-checkbox input:checked ~ .inner-check:after {
    display: block;
}

/* Styling the checkmark using webkit. Rotated the rectangle by 45 degree and showing only two border to make it look like a tickmark */
.custom-checkbox .inner-check:after {
    left: 8px;
    bottom: 5px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-opportunity-head {
    margin-top: 16px;
}

.custom-opportunity-head h3 {
    font-size: 29px;
    margin-bottom: 20px;
}

#opportunity-detail th {
    font-size: 16px;
    padding: 11px 0px;
    border: none;
}

#opportunity-detail td {
    font-size: 15px;
    border: none;
    padding: 0px 8px 11px 0px;
    vertical-align: middle;
}

#opportunity-detail .btn-default {
    border-radius: 7px;
    background-color: #F6F6F6;
    text-transform: uppercase;
    color: #494949;
    font-family: Montserrat;
    font-weight: 500;
    letter-spacing: 0.01px;
    margin-top: 2px;
    min-width: 80px;
    text-align: center;
    float: right;
    font-size: 14px;
    min-height: 25px;
    padding: 7px 20px;
}

#opportunity-detail #add-opportunity-btn {
    border-radius: 7px;
    background-color: #549AC9;
    border: 1px solid #539AC9;
    min-width: 211px;
    font-size: 15px;
    padding: 7px 21px;
    min-height: 20px;
}

#dropdown-caret-icon {
    position: absolute;
    right: 10px;
    pointer-events: none;
    bottom: 12px;
    width: 15px;
    z-index: 99;
}

#search-icon-input {
    position: relative;
}

#search-icon {
    position: absolute;
    right: 7px;
    pointer-events: none;
    bottom: 9px;
    width: 16px;
}

#opportunity-detail .select-items div, #opportunity-detail .select-selected {
    min-height: 32px;
    padding: 0px 17px;
}

#search-icon-input input {
    min-height: 35px;
    height: 32px;
    border-radius: 12.5px;
    font-size: 15px;
    font-weight: 100;

}

#opportunity-detail table input[type=checkbox] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

#opportunity-detail .apply-btn {
    border-radius: 7px;
    background-color: #00568F;
    color: #FFFFFF;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.01px;
    line-height: 22px;
    text-align: center;
    height: 19px;
    padding: 4px 13px;
    min-height: 34px;
}

#opportunity-detail #add-business-btn {
    border-radius: 7px;
    background-color: #549AC9;
    border: 1px solid #539AC9;
    font-size: 15px;
    min-width: 282px;
    min-height: 10px;
    padding: 7px 20px;
}

#opportunity-detail .badge {
    width: 16px;
    height: 16px;
    align-items: center;
    display: inline-grid;
    vertical-align: middle;
    background-color: #929292;
    font-size: 10px;
    align-content: center;
}

.volunteer-back {
    padding: 4px 0;
    margin-bottom: 25px;
}

.volunteer-back h3 {
    background: rgb(242, 242, 242);
    padding: 4px 0px 4px 70px;
    margin-top: 4px;
    font-size: 20px;
}

.volunteer-back img {
    position: absolute;
    float: left;
    cursor: pointer;
    width: 45px;
    height: 45px;
}

.volunteer-top-buttons {
    margin-bottom: 25px;
}

.volunteer-top-buttons img {
    height: 40px;
    vertical-align: top;
}

.volunteer-top-buttons h3 {
    display: inline-block;
    font-size: 20px;
    margin: 0;
    margin-top: 4px;
}

.opportunity-details h6 {
    font-weight: bold;
    display: inline-block;
    margin-right: 4px;
    font-size: 20px;
}

.opportunity-details span {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
}

.volunteer-info {
    border: 5px solid #f2f2f2;
    padding: 1rem 2rem !important;
}

/************************************************************
 Volunteer View Css
************************************************************/
.vs-head {
    margin: 60px 0 30px 0;
}

.vs-head .logo {
    height: 64px;
    margin-bottom: 10px;
}

.vs-head .icon {
    height: 32px;
}

.vs-head .contact {
    font-size: 18px;
    font-weight: 500;
}

.vs-head .categories img {
    width: 45px;
    height: 45px;
}

.watch-list-icon--icon {
    height: 23.5px;
    width: 26px;
    min-width: 23.5px;
    z-index: 9;
    position: relative;
    cursor: pointer;
    background-image: url("/assets/images/icons/icon-heart.png");
    background-size: cover;
}

.watch-list-icon--icon {
    border: none;
    background-color: transparent;
}

.watch-short-listed {
    height: 23.5px;
    width: 26px;
    min-width: 23.5px;
    position: relative;
    cursor: pointer;
    background-size: cover;
    background-image: url("/assets/images/icons/icon-heart-active.png");
    display: none;
}

.watch-list-icon--message {
    position: absolute;
    top: -11px;
    right: -7px;
    background: white;
    padding: 10px 40px 10px 10px;
    color: #000000;
    font-size: 19px;
    letter-spacing: 0.83px;
    line-height: 25px;
    text-align: center;
    border: 2px solid #C4C4C4;
    opacity: 0.97;
    border-radius: 8px 25px 25px 8px;
    background-color: #FFFFFF;
    width: 300px;
    display: none;
}

.vs-head .btn-contact {
    background: #235e85;
}

.vs-head .btn-contact:hover {
    background: #0c3653;
}

.vs-head ul.rel-catergory-link {
    position: relative;
    top: 1px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    text-align: right;
    justify-content: flex-start;
    align-self: flex-start;
}

.vs-head ul.rel-catergory-link li {
    display: inline-block;
    margin-right: -1px;
    vertical-align: top;
    margin-bottom: 5px;
    padding-right: 5px;
}

.vs-head ul.rel-catergory-link li a {
    border-radius: 13px;
    background-color: #549AC9;
    color: #FFFFFF;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 15px;
    text-align: center;
    padding: 6px 10.5px 5px;
    text-transform: uppercase;
    display: block;
}

.vs-head ul.rel-catergory-link li a {
    padding-left: 8px;
    padding-right: 8px;
}

.vs-page hr {
    border-top: 5px solid rgba(0, 0, 0, .1);
}

.vs-center {
    margin: 64px 0;
}

.vs-center .about-header {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 27pt;
}

.vs-center .opportunity-details {
    margin-top: 40px;
    margin-bottom: 40px;
    background: #f5f5f5;
    padding: 15px 30px;
    line-height: 40px;
}

.vs-center .requirements {
    margin: 50px 0;
}

.vs-center .requirements h6 {
    font-weight: bold;
    font-size: 20px;
}

.vs-center .requirements span {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
}

.vs-center .requirement-header {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.vs-center .whats {
    margin: 50px 0;
}

.vs-center .whats h6 {
    font-weight: bold;
    display: inline-block;
    font-size: 20px;
}

.vs-center .whats span {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 28px;
}

.vs-center .whats-header {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.vs-center .resources {
    margin: 50px 0;
}

.vs-center .resources-header {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 27pt;
}

.vs-center .attachment div {
    display: inline-block;
}

.vs-center .attachment a {
    display: block;
    height: 30px;
    width: 50px;
    border-radius: 3px;
    margin-bottom: 3px;
}

.vs-center .attachment h6 {
    display: inline-block;
}

.vs-center .attachment img {
    height: 64px;
}

.vs-center .attachment {
    padding: 0;
}

.vs-center .attachment .inner {
    padding: 10px;
    border: 3px solid #e5e5e5;
    border-radius: 5px;
    margin: 6px;
}


.vs-center .attachment .inner h6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
    max-height: 150px;
    overflow: hidden;
}

.vs-center .photos {
    margin: 50px 0;
}

li.lslide {
    text-align: center;
}

.lSSlideOuter .lSPager.lSGallery img {
    height: 50px !important;
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    padding: 2px;
}

.lSSlideOuter .lSPager.lSGallery li {
    width: 60px !important;
    border-radius: 0 !important;
}

.lSSlideOuter .lSPager.lSGallery {
    width: 100% !important;
    display: flex;
    justify-content: center;
}

.lightSlider.lSSlide img {
    height: inherit;
    object-fit: contain;
}

.lightSlider.lSSlide > * {
    height: inherit !important;
    position: relative;
}

.lSSlideOuter {
    padding: 15px;
}

.lightSlider.lSSlide a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
}
.interested span{
    margin-left: 5px;
    font-weight: bold;
    margin-right: 15px;
    color: rgb(69, 69, 69);
    height: inherit;
}

@media (max-width: 800px) {
    .banner {
        min-height: 200px;
    }

    .banner .page-header {
        min-height: 63px;
    }

    h1 {
        font-size: 32px;
        font-weight: 600;
        text-align: left;
    }

    .vs-head .justify-content-end {
        justify-content: unset !important;
    }

    .top-info {
        flex-basis: unset !important;
    }

    .opportunity-details span {
        font-size: 18px;
    }

    .btn-follow {
        margin: 20px 20px;
    }

    .back-btn {
        top: 10px;
    }
}

@media (max-width: 600px) {
    .logo, .btn-follow {
        margin: 10px auto;
    }

    h1, h3 {
        text-align: center;
    }

    .top-info {
        width: 100%;
        text-align: center;
    }

    .top-info b {
        display: block;
    }

    .top-info .categories {
        text-align: center;
        display: block;
    }

    .share-links * {
        font-size: 0 !important;
    }

    .vs-head .justify-content-end {
        justify-content: center !important;
    }

    .back-btn {
        top: 30px;
        left: 20px;
    }

    .vs-center .requirement-header,
    .resources-header,
    .about-header,
    .whats-header {
        text-align: center;
    }

    .vs-head ul.rel-catergory-link {
        display: block;
        text-align: center;
    }
    .vs-head .btn-opp{
        display:block !important;
    }
    .interested{
        text-align: center;
        padding: 10px;
    }
    .watch-list-icon{
       /* text-align: center;
        margin-top: 20px;*/
    }
    .watch-short-listed,.watch-list-icon--icon{
        display: inline-block;
    }
}
@media (max-width: 400px) {
    .watch-list-icon--icon{
        left: 5px !important;
    }
}
