@import "../plugin/bootstrap-3.3.7/css/bootstrap.min.css";
@import "../plugin/fontawesome-5.2.0/css/all.min.css";
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
@font-face {
    font-family: "OpenSans";
    src: url("../font/OpenSans-Regular.ttf");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "OpenSans";
    src: url("../font/OpenSans-Bold.ttf");
    font-style: normal;
    font-weight: 700;
}


/***** LOGIN PAGE *****/


/*home page*/

.home-wrapall {
    position: relative;
    left: 0;
    right: 0;
    height: 100vh;
    z-index: 9999;
    font-family: 'brandon_textlight';
    display: table;
    width: 100%;
}

.home-background-image {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background: url('../images/home_background.jpg') no-repeat center center;
    background-size: cover;
    -webkit-filter: blur(5.3px);
    -moz-filter: blur(5.3px);
    -o-filter: blur(5.3px);
    -ms-filter: blur(5.3px);
}

.home-background-blur {
    height: 100%;
    background-image: radial-gradient(circle at 0 0, #2e5ab9, rgba(20, 128, 131, 0.5));
}

.home-container {
    display: table-cell;
    vertical-align: middle;
    padding: 30px;
}

.home-title {
    font-size: 62px;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    padding: 0;
}

.home-subtitle {
    font-size: 30px;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    padding: 0;
}

@media (max-width:768px) {
    .home-title {
        font-size: 46px;
    }
    .home-subtitle {
        font-size: 24px;
    }
}

@media (max-width:414px) {
    .home-title {
        font-size: 28px;
    }
    .home-subtitle {
        font-size: 18px;
    }
}

.home-login-window {
    background: rgba(256, 256, 256, 0.35);
    border-radius: 3px;
}

.home-input {
    width: 100%;
    border-radius: 3px;
    background-color: #ffffff !important;
    border: 1px solid #DDDDDD;
    font-size: 16px;
    padding: 17px 17px 17px 58px;
}

.home-forget-pass {
    color: white;
    font-size: 16px;
    line-height: 50px;
}

.home-wrapall .input-wrap {
    position: relative;
}

.home-wrapall .input-wrap > img {
    position: absolute;
    left: 20px;
    top: 16px;
    width: 22px;
    height: 22px;
}


/***** END LOGIN PAGE *****/


/***** CUSTOM BOOTSTRAP *****/

.navbar {
    margin-bottom: 0;
    min-height: 100px;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.navbar-brand {
    height: 100px;
    padding: 40px 15px;
    font-weight: 700;
    font-size: 30px;
}

ul, li {
    list-style: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ccc;
}

a:hover, a:focus {
    text-decoration: none;
    outline: 0;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
    color: #777;
    background-color: transparent;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
    background-color: transparent;
}

.nav>li:not(.avatar-user)>a:focus, .nav>li:not(.avatar-user)>a:hover {
    text-decoration: underline;
}

.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
    color: #777;
}

.is-home .navbar-default .navbar-brand, .is-home .navbar-default .navbar-nav>li>a {
    color: #eee;
}

.is-home ul.nav.navbar-nav>li>a>span {
    border-color: #eee;
}

.is-home .navbar {
    background-color: transparent;
}

p {
    margin-bottom: 5px;
}


/***** END CUSTOM BOOTSTRAP *****/


/***** CUSTOM SCROLLBAR *****/

::-webkit-scrollbar {
    width: 2px;
}


/* Track */

::-webkit-scrollbar-track {
    border-radius: 50%;
    background-color: transparent;
}


/* Handle */

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #e7e7e7;
}


/***** CUSTOM SCROLLBAR *****/


/***** COMMON *****/

html, body {
    font-family: "OpenSans", sans-serif;
    background-color: #f6f8fa;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
    height: 100%;
    margin: 0;
    padding: 0;
}

.font-700 {
    font-weight: 700;
}

.text-color-blue {
    font-weight: bold;
    color: #2bbef1;
}

.text-color-yellow {
    font-weight: bold;
    color: #ffc900;
}

.text-color-green {
    font-weight: bold;
    color: #5cb85c;
}

.text-color-black {
    color: #333;
}

.text-color-grey {
    font-weight: bold;
    color: #b5b5b5;
}

.text-color-white {
    color: #fdfdfd;
}

.text-color-red {
    font-weight: bold;
    color: #ff0000;
}

.message-noti {
    color: #fff;
    padding: 20px 15px;
}

.message-noti-success {
    background-color: #2bbef1;
}

.main-content {
    /*padding-bottom: 92px;*/
    padding-top: 130px;
}

.no-padding {
    padding: 0;
}

.no-padding-left {
    padding-left: 0;
}

.no-padding-right {
    padding-right: 0;
}

.no-margin {
    margin: 0;
}

.display-flex {
    display: flex;
}

.display-inline-block-middle {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}

.align-item-center {
    align-items: center;
}

.display-flex-center-justify {}

.padding-side-horizontal-15 {
    padding-left: 15px;
    padding-right: 15px;
}

ul.nav.navbar-nav>li>a>span {
    padding-right: 25px;
    border-right: 1px solid #777;
}

.page-container {
    position: relative;
    min-height: 100%;
}

.rating-default {
    color: #9b9da0;
}

.rating-voted {
    color: #ffc900;
}


/***** END COMMON *****/


/***** NAVBAR *****/

.header .navbar .navbar-nav ul li:not(.avatar-user) a:hover {
    text-decoration: underline;
}

.navbar-nav>li.avatar-user>a {
    padding-top: 25px;
    padding-bottom: 25px;
}

.avatar-user img {
    width: 50px;
}


/***** END NAVBAR *****/


/***** CUSTOM CHECKBOX *****/

label.checkbox-custom {
    margin: 0;
}

.checkbox-custom .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 20px;
    height: 20px;
}

.checkbox-custom .cr:before {
    position: absolute;
    font-size: 22px;
    line-height: 0;
    top: 50%;
    left: 0%;
}

.checkbox-custom input[type="checkbox"] {
    display: none;
}

.checkbox-custom input[type="checkbox"]:not(:checked)+.cr:before {
    opacity: 0;
}

.checkbox-custom input[type="checkbox"]:checked+.cr:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    color: #35be20;
}

.checkbox-custom input[type="checkbox"]:disabled+.cr {
    opacity: .5;
}


/***** END CUSTOM CHECKBOX *****/


/***** HOMEPAGE *****/

.cover-container {
    background-image: url("../images/img-cover.jpg");
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cover-user {
    margin-bottom: -90px;
}

.cover-user img {
    width: 100%;
    height: 168px;
}

.content-item {
    background-color: #fdfdfd;
    box-shadow: 2px 2px 7px 0px rgba(85, 85, 85, 0.15);
    margin-bottom: 42px;
}

.cover-title {
    font-size: 50px;
    margin-bottom: 10px;
}

.cover-description {
    font-size: 30px;
    margin-bottom: 40px;
}

.cover-form {
    background-color: #ffffff50;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 62%;
}

.cover-form .form-control {
    height: 50px;
}

.btn-cover {}

.btn-cover a {
    padding-top: 14px;
    padding-bottom: 14px;
}

.btn-cover a, .btn-cover a:hover, .btn-cover a:focus, .btn-cover a:active {
    color: #fdfdfd;
    background-color: #2bbef1;
}

.btn-clear {
    background-color: #B6B6B6 !important;
}

.content-filter, .booking-filter {
    margin-bottom: 50px;
}

.booking-filter .pull-left, .content-filter .pull-left {
    border-bottom: 2px solid #2bbef1;
    padding-bottom: 10px;
}

.booking-filter .pull-right span:not(:last-child), .content-filter .pull-right span:not(:last-child) {
    margin-right: 40px;
}

.booking-filter .pull-right span a, .content-filter .pull-right span a {
    color: #333;
}

.content-list {}

.content-list .form-group {
    margin-bottom: 30px;
}

.content-list .avatar-user {}

.content-list .avatar-user img {
    width: 150px;
    height: 150px;
    border: 5px solid #FDFDFC;
    border-radius: 50%;
}

.content-cover {
    margin-bottom: 30px;
}

.content-name {}

.content-description {
    margin-top: 10px;
    margin-bottom: 10px;
}

.content-description.max-height {
    height: 80px;
    overflow: auto;
}

.content-description>p:not(:last-child) {
    font-size: 14px;
}


/*.selected {
    text-decoration: none;
    color: #fdfdfd;
    border: 1.5px solid #35be20;
    font-weight: 700;
    border-radius: 25px;
    padding: 8px 12px;
    font-size: 14px;
    transition: all .15s ease;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
}
*/

a.btn-message {
    color: #35be20;
    border: 1.5px solid #35be20;
    font-weight: 700;
    border-radius: 25px;
    padding: 8px 12px;
    font-size: 14px;
    transition: all .15s ease;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
}

a.btn-message:hover, a.btn-message:focus, a.btn-message:active {
    background-color: #35be20;
}

a.btn-more:hover, a.btn-more:focus, a.btn-more:active, a.btn-message:hover, a.btn-message:focus, a.btn-message:active {
    text-decoration: none;
    color: #fdfdfd;
}

a.btn-more {
    color: #0f4555;
    font-weight: 700;
    border: 1.5px solid #e9eaea;
    padding: 10px 50px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 30px;
}

a.btn-more:hover, a.btn-more:focus, a.btn-more:active {
    background-color: #0f4555;
    border-color: #0f4555;
    transition: all .3s ease;
}

.is-home .navbar-default .navbar-brand, .is-home .navbar-default .navbar-nav>li>a {
    color: #eee;
}

.is-home ul.nav.navbar-nav>li>a>span {
    border-color: #eee;
}

.is-home .navbar {
    background-color: transparent;
}


/***** END HOMEPAGE *****/


/***** MESSAGE *****/

.message-main {
    background: #fdfdfd;
    margin-bottom: 30px;
}

.message-time, .uset-last-message {
    font-size: 13px;
    color: #b5b5b5;
}

.conversation-block {
    border-right: 0.5px solid #eee;
}

.conversation-info {
    display: flex;
}

a.conversation-item {
    display: block;
    padding: 20px 25px;
}

a.conversation-item:not(:last-child) {
    /* border-bottom: 1px solid #ddd; */
}

a.conversation-item:hover {
    text-decoration: none;
}

.conversation-item.active {
    background-color: #f0f0f0;
}

.conversation-block .conversation-search {
    margin-top: 15px;
    margin-bottom: 15px;
}

.conversation-search .conversation-search-input .input-group-addon {
    background-color: #f2f2f2;
    border: 0;
    color: #b5b5b5;
}

.conversation-search .conversation-search-input input.form-control {
    background-color: #f2f2f2;
    border: 0;
    color: #b5b5b5;
    box-shadow: none;
    height: 50px;
}

.conversation-list {
    height: 700px;
    overflow-y: auto;
}

.conversation-list .user-fullname {
    color: #333;
}

.conversation-detail {}

.conversation-detail .user-fullname, .conversation-detail .message-content .user-fullname {
    color: #2bbef1;
}

.conversation-content {
    height: 700px;
    overflow-y: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.message-detail {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.message-detail.self .message-conten {
    float: right;
    text-align: right;
}

.message-detail.self .user-avatar {
    float: right;
    text-align: right;
}

.user-last-message {
    padding-left: 10px;
    width: 78%;
}

.conversation-detail .user-avatar {
    width: 75px;
    float: left;
}

.user-avatar img {
    width: 60px;
    height: 60px;
}

.user-fullname {
    font-weight: 700;
    margin-bottom: 3px;
}

.message-text {
    font-size: 14px;
    color: #8f8db1;
}

.message-tool {
    margin-top: 20px;
    /*    display: flex;
        align-items: center;
        justify-content: space-around;*/
    text-align: center;
}

.message-input {
    width: 65%;
    margin-left: 30px;
    margin-right: 30px;
}

.message-input input {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #ddd;
    box-shadow: none;
    height: 50px;
}

.message-btn a:hover, .message-btn a:active, .message-btn a:focus {
    text-decoration: none;
    color: #2bbef1;
}


/***** END MESSAGE *****/


/***** BOOKING *****/

.booking-list {
    background-color: #fdfdfd;
    margin-bottom: 50px;
}

.booking-filter {
    padding: 10px 40px;
}

.booking-table .table>thead>tr>th {
    color: #2bbef1;
    border: 0;
}

.booking-table .table>tbody>tr>td {
    border: 0;
}

.booking-form .form-group{
    align-items: center;
    display: flex;
}

.table {
    margin-bottom: 0;
}

.table>tbody+tbody {
    border: none;
}

.table > tfoot > tr > td {
    border: none;
}

.pagination {
    margin-right: 20px;
}

/***** END BOOKING *****/


/***** SEARCH TUTORS *****/

.search-form-2 {
    /* padding-top: 80px; */
    padding-bottom: 50px;
    background-color: transparent;
}

.search-form .form-control {
    height: 50px;
}

.career-container {}

.career-container {
    padding-left: 20px;
    padding-right: 20px;
}

.career-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 20px;
}

.career-icon img {
    width: 100%;
}

.testimonial-list {
    padding-left: 20px;
    padding-right: 20px;
}

.career-container p.career-title:nth-child(3) {
    margin-top: 80px;
}

.career-achievement p {
    font-size: 14px;
    line-height: 1.44 !important;
}

.testimonial-list, .career-container {
    margin-top: 25px;
    margin-bottom: 25px;
}

.career-title, .testimonial-title {
    margin-top: 30px;
    margin-bottom: 25px;
    font-size: 18px;
}

.career-container>div p:not(.career-title) {
    line-height: 1.8;
}

.testimonial-content {
    font-size: 13px;
    padding: 20px 15px;
    border-radius: 4px;
}

.testimonial-content .avatar-user img {
    width: 50px;
}

.testimonial-item {
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
}

.testimonial-item .avatar-user img {
    width: 55px;
    border: 0;
    padding-left: 10px;
}


/***** END SEARCH TUTORS *****/


/***** FOOTER *****/

.footer {
    background-color: #fff;
    padding: 35px 0 25px 0;
    /*    position: absolute;
        width: 100%;
        bottom: 0;*/
}

.footer-copyright {
    font-size: 14px;
}

.footer-sitemap ul li {
    display: inline;
}

.footer-social {
    width: 26%;
}

.footer-social a {
    color: #fff;
    padding: 8px 9px;
    background-color: #cccdcf;
    border-radius: 50%;
}

.footer-social ul li {
    display: inline-block;
    padding-left: 7px;
    padding-right: 7px;
}

.footer-sitemap a {
    color: #b5b5b5;
    font-size: 13px;
    padding-left: 9px;
    padding-right: 12px;
}


/***** END FOOTER *****/

@media (min-width: 768px) {
    .navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {
        margin-left: 0;
    }
    .navbar-nav>li>a {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 90%;
    }
}

.checklist {
    border-bottom: 2px solid #2bbef1;
    padding-bottom: 10px;
}

.checkcursor {
    text-decoration: none;
    cursor: pointer;
}

.admin-gray-input {
    font-size: 16px;
    padding-left: 20px;
    height: 50px;
    border-radius: 3px;
    background-color: #666666;
    border: 0;
    outline: none;
    width: 50%;
    letter-spacing: 0.5px;
    text-align: left;
    color: #b5b5b5;
}

.admin-gray-select {
    font-size: 16px;
    height: 50px;
    border-radius: 3px;
    background-color: #f2f2f2;
    border: 0;
    outline: none;
    width: 50%;
    letter-spacing: 0.5px;
    text-align: left;
    color: #000000;
}

select {
    text-indent: 12px;
    text-transform: capitalize;
}

.select-name {
    color: #b5b5b5;
    position: absolute;
    padding-left: 20px;
}

.admin-gray-input:focus {
    background-color: #858585;
    outline: none;
}

.admin-gray-input.focusing {
    background-color: #858585;
    outline: none;
}

.admin-wrapall .input-wrap {
    position: relative;
}

.admin-wrapall .input-wrap > img {
    position: absolute;
    left: 20px;
    top: 14px;
    width: 22px;
    height: 22px;
}

.admin-wrapall .input-wrap.focusing::after {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #858585;
    position: absolute;
    right: -55px;
    top: 14px;
    content: '';
}

.admin-date {
    position: absolute;
    width: 25px;
    left: 45%;
}

.rating {
    margin-left: 260px;
    border: none;
    float: left;
}

.rating > input {
    display: none;
}

.rating > label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

.rating > .half:before {
    content: "\f089";
    position: absolute;
}

.rating > label {
    color: #ddd;
    float: right;
    cursor: pointer;
}

.rating > input:checked ~ label,
/* show gold star when clicked */

.rating:not(:checked) > label:hover,
/* hover current star */

.rating:not(:checked) > label:hover ~ label {
    color: #FFD700;
}


/* hover previous stars in list */

.rating > input:checked + label:hover,
/* hover current star when changing rating */

.rating > input:checked ~ label:hover, .rating > label:hover ~ input:checked ~ label,
/* lighten current selection */

.rating > input:checked ~ label:hover ~ label {
    color: #FFED85;
}

.btnCancel {
    width: 80px;
    height: 36px;
}

.loading-spinner {
    -webkit-animation-play-state: running;
    animation-play-state: running;
    opacity: 1;
    position: relative;
    /* height: 100vh; */
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
        transform: translate3d(-50%, -50%, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
        transform: translate3d(-50%, -50%, 0) rotate(360deg);
    }
}

.loading-spinner.-paused {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    opacity: 0.2;
    transition: opacity linear 0.1s;
}

.loading-spinner::before {
    -webkit-animation: 1.5s linear infinite spinner;
    animation: 1.5s linear infinite spinner;
    -webkit-animation-play-state: inherit;
    animation-play-state: inherit;
    border: solid 3px #dedede;
    border-bottom-color: #EF6565;
    border-radius: 50%;
    content: "";
    height: 40px;
    left: 50%;
    opacity: inherit;
    position: absolute;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    width: 40px;
    will-change: transform;
    z-index: 10000000;
}