.header-search-container {
    width: 30%;
    padding-left: 35px;
    padding-right: 5px;
}


@media screen and (max-width:1199px) and (min-width: 992px){
    .header-search-container {
        width: 30%;
        padding-left: 65px;
        padding-right: 5px;
    }

}

.header-school-type {
    width: 35%;
    padding: 0 3px 0 !important;;
}

.header-location-search {
    width: 100%;
    padding: 0 !important;
}

.search-header-type {
    display: inline-flex;
}

.header-search-main {
    margin-bottom: -15px;
}

.header-search-btn {
    line-height: 1.52857143 !important;
}

input#searchTextField {
    font-weight: 600;
}

.navbar-primary {
    background-color: #202124;
    box-shadow: 0 2px 4px rgba(0,0,0,.5);
}


nav.navbar.navbar-primary.navbar-fixed-top.navbar-sticky {
    /*background: linear-gradient(to right, #1F1C18, #8E0E00);
    -webkit-box-shadow: 0px 0px 9px 3px rgba(41, 41, 41, .25);
    -moz-box-shadow: 0px 0px 9px 3px rgba(41, 41, 41, .25);
    box-shadow: 4px 5px 20px 2px rgba(41, 41, 41, .25);*/
    z-index: 555;
    background-color: #202124;
    box-shadow: 0 2px 4px rgba(0,0,0,.5);
}


#profile-dropdown {
    color: white;
}

.navbar-logo img {
    padding: 1px 0px 1px 0px;
}

.schooltypedropdown {
    border: 1px solid #ccc !important;
}

.wishlist-heart {
    color: white;
    font-size: 14px;
    padding-right: 5px;
}

.shortlist-text {
    color: white !important;
}

.shortlist-text:hover {
    color: white !important;
    font-size: 14px;
}

.mtn-5 {
    margin-top: 9px;
}

a.btn.login {
    margin-top: -13px;
}

.navbar-mini > ul > li > a.btn {
    opacity: 0.9;
}

.navbar-mini > ul > li > a.btn:hover {
    background: red;
    border: 2px solid red;
    opacity: 1;
}

#responsive-menu a {
    color: white;
}

/*MODAL CSS POPUP*/

div#searchcontainer {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: block;
    /*background-color: #8849d5;*/
    background-color: #01547a;
    left: 0px;
    /* initially position search container out of view */
    /*top: 63px;*/
    top: 0px;
    /* shift container downwards so the header is still visible when search is shown */
    cursor: crosshair;
    text-align: center;

   /* -webkit-transform: scale(.9) translate3d(-0, -50px, 0);
    transform: scale(.9) translate3d(-0, -50px, 0);
    -webkit-transition: -webkit-transform .5s, opacity .5s, left 0s .5s;
    transition: transform .5s, opacity .5s, left 0s .5s;*/
}

/*.blue-container{
    width:100%;
    background: #8849d5;
    height: 100%;

}*/

div#searchcontainer form {
   /* opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
    -webkit-transition: all .5s 0s;
    transition: all .5s 0s;*/
}

div#searchcontainer form input[type="text"] {
    width: 90%;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 10px;
    border: none;
    border-bottom: 2px solid gray;
    outline: none;
    font-size: 3em;
    background: #eee;
}

div#searchcontainer.opensearch {
    left: 0;
    opacity: 1;
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform .5s, opacity .5s, left 0s 0s;
    transition: transform .5s, opacity .5s, left 0s 0s;
}

div#searchcontainer.opensearch form {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all .5s .5s;
    transition: all .5s .5s;
}

@media (max-width: 480px) {
    div#searchcontainer form input[type="text"] {
        width: 95%;
    }
}

.school-popup-text {
    padding-top: 45px;
    color: white;
}

.text-popup {
    font-size: 21px;
    font-weight: 300;
    line-height: 28px;
    margin: 0 0 25px;
}

.form-control.popup-input {
    height: 46px !important;
}

button.btn.btn-primary.btn-block.search_btn.header-search-btn.popup-btn {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

/*Radio Button CUSTOM DESIGN */

.radio-label {
    display: inline-flex;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-right: 25px;
}

/* Hide the browser's default radio button */
.radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio-label:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-label input:checked ~ .checkmark {
    background-color: #2196F3;

}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-label input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-label .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.radio-btn-one-line {
    padding-top: 15px;
    padding-bottom: 15px;
}

/*RADIO BUTTON CUSTOM DESIGN END */

.popup-input {
    font-size: 15px;
}

div#searchcontainer {
    cursor: default;
}

.close-popup {
    font-size: 40px;
    color: white !important;
    opacity: 1;
    margin-right: 15px;
    margin-top: 0px;
}

/*ARROW TOP*/
.suggestion:before {
    /*content: "";*/
    /*position: absolute;*/
    /*right: 50%;*/
    /*top: -10px;*/
    /*width: 0;*/
    /*height: 0;*/
    /*border-style: solid;*/
    /*border-width: 0 10px 10px 10px;*/
    /*border-color: transparent transparent white transparent;*/
    /*z-index: 9999;*/
}

.suggestion {
    /*background: white;
    border: 0px solid #fffefe;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: relative;
    width: 100%;
    z-index: 99999;*/
}

@media screen and (max-width: 479px) {
    .school-popup-text {
        padding-top: 60px;
        padding-bottom: 25px;
    }

    .radio-label {
        padding-right: 5px;
        font-size: 13px;
        padding-left: 15px;
    }

    .checkmark {
        height: 10px;
        width: 10px;
        top: 7.5px;
    }

    .radio-label .checkmark:after {
        top: 3px;
        left: 3.5px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: white;
    }

    .radio-btn-one-line {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .search-inline {
        display: inline-flex;
    }

    input.form-control.popup-input {
        width: 88%;
        font-size: 14px;
    }

    .input-group-btn.search-popup {
        width: unset;
    }

    button.btn.btn-primary.btn-block.search_btn.header-search-btn.popup-btn {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
        margin-top: -19px;
    }

    .suggestion-container {
        margin-top: -25px;
    }
}

@media screen and (max-width: 376px) {
    button.btn.btn-primary.btn-block.search_btn.header-search-btn.popup-btn {
        margin-top: -17px;
    }


    /*.header-search-main{
        width:0%;
    }*/
}

@media screen and (max-width: 360px){
    .radio-label .checkmark:after {
        left:2.5px;
    }
}

@media screen and (max-width: 320px) {
    button.btn.btn-primary.btn-block.search_btn.header-search-btn.popup-btn {
        margin-top: -15px;
    }

    .radio-label {
        font-size: 11px;
    }
}

i.fa.fa-search.search-icon-mob {
    font-size: 18px;
    color: white;
}

#close_popup {
    position: absolute;
    top: 1%;
    right: -24%;
    border: none !important;
    outline: none !important;
}

@media screen and (max-width:992px) and (min-width:479px){
    #close_popup {
        position: absolute;
        top: 1%;
        right: -7%;
        border: none !important;
        outline: none !important;
    }
}

#close_popup:focus, #close_popup:active {
    border: none !important;
    outline: none !important;
}

ul#responsive-menu {
    margin-top: 0px !important;
}

li#shortlist {
    margin-top: -5px;
}

#btn-profile {
    margin-top: -5px;
}

@media screen and (max-width: 1024px) {
    .header-search-container {
        width: 40%;
        padding-left: 25px;
        padding-right: 0px;
    }

}

@media screen and (max-width: 768px) {
    #close_popup {
        position: unset;
        top: unset;
        right: unset;
        border: none !important;
        outline: none !important;
    }

    .header-search-container {
        width: 56%;
    }

}

@media only screen  and (max-width: 768px) and (min-width: 479px) {

    ul.slicknav_nav {
        position: absolute;
        width: 100%;
        top: 60px;
        left: 0px;
    }

    .navbar-logo img {
        height: 50px;
    }
}

@media screen and (max-width: 479px) {
    i.fa.fa-search.search-icon-mob {
        font-size: 18px;
        color: white;
        /* margin-top: -15px; */
        padding-top: -10px;
        vertical-align: top;
        margin-top: 10px;
        margin-right: 50px;
    }

    .main-wrapper {
        background: #FFF;
        padding-top: 48px;
    }

    .slicknav_btn.slicknav_collapsed, .slicknav_btn.slicknav_collapsed:before, .slicknav_btn.slicknav_open, .slicknav_btn.slicknav_open:before {
        color: white !important;
        position: absolute;
        left: 3%;
        width: 5%;
    }

    .navbar-logo {
        padding-left: 30px;
    }

    #btn-auth {
        margin-right: -15px;
    }

    .search-icon-mob-view {
        margin-right: -25px;
    }

    .navbar-mini > ul > li > a.btn {
        margin-right: 15px;
    }

    #btn-profile {
        padding-right: unset !important;
        /* border: 2px solid white; */
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin-top: 4px;
    }

    #profile-dropdown {
        position: absolute;
        margin-top: -9px;
        margin-left: 7px;
    }

    li#shortlist {
        margin-right: 15px;
        margin-top: -5px;
    }

    .blue-container {
        height: 100%;
    }

    #close_popup {
        position: absolute;
        top: 25px;
        right: 2px;
        border: none !important;
        outline: none !important;
    }

    .suggestion-container {
        margin-top: 0px;
    }

    .navbar-fixed-top {
        position: fixed !important;
    }

    /*SEARCH PAGE SORT AND FILTER START */
    .sidebar-inner.school_filter_scroll, .sidebar-inner.school_filter_scroll.navbar-fixed-top.navbar-sticky.filter {
        margin-top: 49px;
        box-shadow: 0px 0px 0px 0px #888;
        border-radius: 0px;
        padding: 0px;
        border: none !important;
        z-index: 5555;
    }

    button#search_btn_filter:after {
        content: '';
        z-index: 1;
        border-left: 3px solid #fff;
        height: 38px !important;
        position: absolute;
        left: 100%;
        opacity: 0.5;
        top: 0;
        margin-top: -2px !important;
    }

    .border_added {
        border-top: 0px solid #EEE !important;
        border-bottom: 4px solid #EEE !important;
    }

    /*SEARCH PAGE SORT AND FILTER END */

}

#shortlist a {
    color: white;
}
/*
nav.navbar.navbar-primary.navbar-fixed-top.navbar-sticky-function {
    height: 62.86px;
    margin-top: -15px !important;

}*/


button.btn.btn-primary.btn-block.search_btn.header-search-btn {
    background: #F56961;
    opacity: 1;
    padding-top: 11px;
    padding-bottom: 10px !important;
}
.header-search-btn {
    line-height: 1 !important;
}

@media screen and (max-width:767px) and (min-width:640px){
    ul.slicknav_nav{
        top:12px;
    }
}




@media screen and (max-width:999px) and (min-width:640px){
    .slicknav_btn.slicknav_open, .slicknav_btn.slicknav_collapsed, .slicknav_btn.slicknav_open:before, .slicknav_btn.slicknav_collapsed:before{
        right:15px;
    }
    .slice-next,.slick-next
    {
        display: none !important;
    }

    .slicknav_nav{
        position: absolute;
        width:100%;
        top:65px ;
        left: 0px;

    }
}


.call-mobile{
    font-size: 21px !important;
    color: lightgreen;
    vertical-align: baseline;
    margin-top: 12px;
    margin-right: 50px;
}

@media screen and (max-width:479px){
    .call-mobile{
        margin-right: 35px;
        margin-top: 0px;
    }
}
@media screen and (max-width:320px){
    .call-mobile{
        margin-right: 17px;
    }
    i.fa.fa-search.search-icon-mob{
        margin-right: 42px;
    }
}
@media screen and (max-width:1199px) and (min-width: 992px){
    .header-search-container {
        width: 30%;
        padding-left: 65px;
        padding-right: 5px;
    }

}

@media screen and (max-width:479px){
    .search-icon-mob-view {
        margin-right: -20px;
        margin-top: 2px;
    }
}

/*
div#searchcontainer {
    height: 60%;
}
*/

.slideup, .slidedown {
    max-height: 0;
    overflow-y: hidden;
    -webkit-transition: max-height 0.4s ease-in-out;
    -moz-transition: max-height 0.4s ease-in-out;
    -o-transition: max-height 0.4s ease-in-out;
    transition: max-height 0.4s ease-in-out;
}
.slidedown {
    max-height: 50% ;
}

/*
@-webkit-keyframes expand {
    0% {
        height: 0px
    }
    100% {
        height: 60%
    }
}*/

#popup-search-button{
    background: #F56961 !important;
}

@media screen and (max-width:479px){
    .slidedown{
        max-height: 275px ;
    }
}
@media screen and (max-width:367px){
    .slidedown{
        max-height: 285px ;
    }
}

@media screen and (max-width:400px){
    .slidedown{
        max-height: 270px ;
    }
}