@import 'default.css';
@import 'header.css';
@import 'hero.css';
@import 'footer.css';
@import 'switch-toggle.css';
@import 'media.css';
@import 'tabs.css';
@import 'index.css';
@import 'modal.css';
@import 'sign-in.css';
@import 'about-us.css';
@import 'contact-us.css';
@import 'profile.css';
@import 'post.css';
@import 'mentor-edit.css';
@import 'mentor-list.css';

.title_h2 span {
    font-weight: 400;
}

@media (min-width:1441px) {
    .sub_title h3 {
        font-size: 26px;
    }
}

/** Top Artist **/
.top_artist .col-sm-6 {
    margin: 25px 0 0;
}

.top_artist figure {
    border-radius: 14px;
    overflow: hidden;
}

.top_artist figure img {
    width: 100%;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}

.top_artist .col-sm-6:hover figure img {
    transform: scale(1.2);
    -webkit-transform: scale(1.1);
}

.artist_info {
    margin: 10px 0;
}

.artist_info h5 {
    font-weight: 600;
}

.artist_info span {
    display: block;
    color: #8B8B8B;
    font-weight: 300;
    font-size: 14px;
    margin: 0 0 5px;
}

.artist_info span em img {
    width: 12px;
}

.star_rated li {
    display: inline-block;
    margin-left: 2px;
}

.star_rated li:first-child {
    margin-left: 0px;
}

.star_rated li img {
    width: 14px;
}

.welcome_ink h5 img {
    width: 26px;
}

.inner_page {
    padding-bottom: 30px;
    min-height: 30vh;
}

.warning-msg {width: 95%; margin: 0 auto; }

/* Sweet Alert */
.sweet-alert {
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.cancel {
    background: var(--grey-color-300);
    border-color: var(--grey-color-300);
    color: var(--secondary-color);
}

.cancel:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
    border: 4px solid #5cb85c !important;
}

.sa-confirm-button-container,
.cancel {
    margin: 2px;
}

.modal-body {
    padding: 40px;
}

@media (max-width:991px) {
    .modal-body {
        padding: 25px;
    }
}

.login-content .wd_sec .login-form,
.login-content .wd_sec .forget-form {
    position: relative;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.login-content .wd_sec .forget-form {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 26px;
    opacity: 0;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.login-content .wd_sec.flipped {
    max-height: 285px;
}

.login-content .wd_sec.flipped .login-form {
    opacity: 0;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.login-content .wd_sec.flipped .forget-form {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.the-canvas {
    border: 1px solid #000000;
    direction: ltr;
}

@media (min-width:1280px) {
    .inner_page {
        min-height: calc(100vh - 570px - 80px);
    }
}

@media (max-width:767px) {
    .inner_page {
        padding-bottom: 20px;
    }

    .artist_info em img {
        max-width: 21px;
    }

    .top_artist .col-sm-6 {
        margin: 15px 0 0;
    }

    .mentor-comment-para.active p {
        margin-bottom: 28px;
    }

    .mentor-comment-para a h6 {
        font-size: 12px;
    }
}

@media (min-width:768px) {
    main {
        height: 100%;
        min-height: calc(100vh - 280px);
    }
}