@font-face {
    font-family: 'Net-VersatileOutline';
    src: url('../fonts/Net-VersatileOutline-Bold.ttf') format('ttf');
    font-weight: bold;
}

.main-screen__title {
    font-family: 'Arial', sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px white;
    font-size: 100px;
    line-height: 1.1;
    font-weight: bold;
    /*color: #fff;*/
}

.noty_layout_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
    position: fixed;
    margin: 0;
    padding: 0;
    z-index: 9999999;
    -webkit-transform: translateZ(0) scale(1, 1);
    transform: translateZ(0) scale(1, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    filter: blur(0);
    -webkit-filter: blur(0);
    max-width: 90%; }

#noty_layout__top {
    top: 0;
    left: 5%;
    width: 90%; }

#noty_layout__topLeft {
    top: 20px;
    left: 20px;
    width: 325px; }

#noty_layout__topCenter {
    top: 5%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
    transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__topRight {
    top: 20px;
    right: 20px;
    width: 325px; }

#noty_layout__bottom {
    bottom: 0;
    left: 5%;
    width: 90%; }

#noty_layout__bottomLeft {
    bottom: 20px;
    left: 20px;
    width: 325px; }

#noty_layout__bottomCenter {
    bottom: 5%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
    transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__bottomRight {
    bottom: 20px;
    right: 20px;
    width: 325px; }

#noty_layout__center {
    top: 50%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(-webkit-calc(-50% - .5px), -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
    transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerLeft {
    top: 50%;
    left: 20px;
    width: 325px;
    -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
    transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

#noty_layout__centerRight {
    top: 50%;
    right: 20px;
    width: 325px;
    -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
    transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }

.noty_progressbar {
    display: none; }

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0.1875rem;
    width: 100%;
    background-color: rgba(0,0,0,.25);
    /*opacity: 0.2;
    filter: alpha(opacity=10);*/
}

.noty_bar {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) scale(1, 1);
    transform: translate(0, 0) scale(1, 1);
    -webkit-font-smoothing: subpixel-antialiased;
    overflow: hidden; }

.noty_effects_open {
    opacity: 0;
    -webkit-transform: translate(50%);
    -ms-transform: translate(50%);
    transform: translate(50%);
    -webkit-animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }

.noty_effects_close {
    -webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }

.noty_fix_effects_height {
    -webkit-animation: noty_anim_height 75ms ease-out;
    animation: noty_anim_height 75ms ease-out; }

.noty_close_with_click {
    cursor: pointer; }

.noty_close_button {
    position: absolute;
    top: 2px;
    right: 2px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out; }

.noty_close_button:hover {
    background-color: rgba(0, 0, 0, 0.1); }

.noty_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10000;
    opacity: .3;
    left: 0;
    top: 0; }

.noty_modal.noty_modal_open {
    opacity: 0;
    -webkit-animation: noty_modal_in .3s ease-out;
    animation: noty_modal_in .3s ease-out; }

.noty_modal.noty_modal_close {
    -webkit-animation: noty_modal_out .3s ease-out;
    animation: noty_modal_out .3s ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }

@-webkit-keyframes noty_modal_in {
    100% {
        opacity: .3; } }

@keyframes noty_modal_in {
    100% {
        opacity: .3; } }

@-webkit-keyframes noty_modal_out {
    100% {
        opacity: 0; } }

@keyframes noty_modal_out {
    100% {
        opacity: 0; } }

@keyframes noty_modal_out {
    100% {
        opacity: 0; } }

@-webkit-keyframes noty_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1; } }

@keyframes noty_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1; } }

@-webkit-keyframes noty_anim_out {
    100% {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0; } }

@keyframes noty_anim_out {
    100% {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0; } }

@-webkit-keyframes noty_anim_height {
    100% {
        height: 0; } }

@keyframes noty_anim_height {
    100% {
        height: 0; } }

.noty_theme__limitless.noty_bar {
    margin: 0.25rem 0;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    border-radius: 0.375rem; }
.noty_theme__limitless.noty_bar .noty_body {
    padding: calc( 1.25rem * 0.8 ) 1.25rem;
    font-size: 14px;
}
.noty_theme__limitless.noty_bar .noty_buttons {
    padding: 10px; }
.noty_theme__limitless.noty_bar .noty_close_button {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .5;
    background: transparent; }
.noty_theme__limitless.noty_bar .noty_close_button:hover {
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .75; }

.noty_theme__limitless.noty_type__alert,
.noty_theme__limitless.noty_type__notification {
    background-color: #fff;
    color: inherit; }

.noty_theme__limitless.noty_type__warning {
    background-color: #f58646;
    color: #fff;
    border-color: #f58646; }

.noty_theme__limitless.noty_type__error {
    background-color: #EF4444;
    color: #fff;
    border-color: #EF4444; }

.noty_theme__limitless.noty_type__info,
.noty_theme__limitless.noty_type__information {
    background-color: #0c83ff;
    color: #fff;
    border-color: #0c83ff; }

.noty_theme__limitless.noty_type__success {
    background-color: #059669;
    color: #fff;
    border-color: #059669; }

/*# sourceMappingURL=noty.css.map*/

.sws-error-message {
    color: red;
}

.sws-admin-links {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 10px;
    z-index: 9999;
}

.upload-image-label {
    cursor: pointer;
    transition: .3s;
    width: 75px;
    flex-shrink: 0;
}

.upload-image-label:hover {
    transition: .3s;
    filter: brightness(1.15);
}

.dashboard-menu {
    position: relative;
    min-height: 0;
    padding-top: 32px;
    padding-bottom: 32px;
}

.dashboard-menu-inner {
    position: sticky;
    top: 80px;
    left: 0;
}

.content {
    padding-top: 107px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.create-form {
    max-width: 700px;
}

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

.search-select {
    margin: 0;
    width: 100%;
}

.search-col-row {
    margin-top: 22px;
}

.checkbox-wrapper label {
    font-size: 15px;
    margin: 0;
}

.checkbox-wrapper {
    margin: 0;
}

.sws-items-list .courses-slider__item-wrapper, .courses-slider__item {
    height: 100%;
}

.sws-items-list .courses-slider__item-wrapper {
    padding-bottom: 56px;
    position: relative;
}

.courses-slider:not(.slick-initialized) {
    opacity: 0;
}

.sws-items-list .courses-slider__item {
    padding: 15px 0;
}

.sws-courses-slider .courses-slider__item {
    padding: 0;
}

.sws-courses-slider .slick-slide {
    margin: 0 12px;
}

.sws-courses-slider .slick-list {
    width: calc( 100% + 24px );
    margin: 0 -12px;
}

.sws-courses-slider:not(.slick-initialized) {
    opacity: 0;
}

.sws-items-list .courses-slider__item-wrapper .button {
    width: calc( 100% - 26px );
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.sws-pagination-wrapper {
    width: 90%;
    margin: 24px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
}

.pagination .disabled {
    pointer-events: none;
}

.pagination a:hover, .pagination a {
    transition: .3s;
}

.sws-video {
    width: 100%;
    height: 100%;
    max-width: 90vw;
    max-height: 90vh;
}

.sws-open-video-btn {
    cursor: pointer;
}

.upload-label {
    width: 100%;
    position: relative;
}

.dz-error-mark, .sws-dz-success-mark, .dz-success-mark {
    display: none;
}

.dz-image img {
    max-width: 250px;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

.sws-dz-success-mark {
    position: absolute;
    bottom: 0;
    right: 0;
}

.sws-dz-success-mark svg path {
    fill: green;
}

.dz-filename, .dz-size {
    padding-right: 60px;
}

.dz-error-message {
    color: red;
}

.upload-progress {
    width: 100%;
    height: 10px;
    border-radius: 8px;
    overflow: hidden;
    background: #ccc;
    box-shadow: 1px 1px 4px rgba( 0, 0, 0, 0.2 );
}

.upload-progress::-webkit-progress-bar {
    background: #ccc;
    border-radius: 8px;
    box-shadow: 1px 1px 4px rgba( 0, 0, 0, 0.2 );
    transition: 1s;
}

.upload-progress::-webkit-progress-value {
    background: linear-gradient(to right, #6008f3, #ee00f8);
    border-radius: 8px;
    box-shadow: 1px 1px 4px rgba( 0, 0, 0, 0.2 );
    transition: 1s;
}

.input-item .upload-progress {
    display: none;
    margin-top: 12px;
}

.button {
    outline: none;
    border: none;
}

.lesson-bullet-item-template {
    display: none;
}

.transparent-button {
    background: transparent;
    color: #6008f3;
    border: 1px solid #6008f3;
    transition: .3s;
}

.transparent-button:hover {
    transition: .3s;
}

.file-label {
    background: #f0f6f7;
    transition: .3s;
}

.dz-drag-hover .file-label {
    background: rgba(96, 8, 243, 0.2);
}

.delete-btn {
    background: rgba(96, 8, 243, 0.1);
    color: red;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    border: none;
    outline: none;
}

.delete-btn svg {
    fill: red;
    width: 20px;
    height: auto;
    transition: .3s;
}

.delete-btn:hover {
    transition: .3s;
    background: red;
}

.delete-btn:hover svg {
    transition: .3s;
    fill: #fff;
}

.lesson-bullet-item {
    position: relative;
}

.delete-lesson-bullet-btn {
    position: absolute;
    top: 0;
    right: 0;
}

.upload-label {
    position: relative;
    display: block;
}

.upload-label input.hidden {
    /*z-index: -1;*/
    /*visibility: hidden;*/
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
}

.upload-label .file-input {
    display: block;
    opacity: 0;
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: -1;
}

.loader-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 99999;
    background: rgba(255,255,255,.8);
    overflow: hidden;
}

body > .loader-container {
    position: fixed;
}

.site-loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 9999;
    background: rgba(255,255,255,1);
}

.lds-roller {
    display: inline-block;
    position: absolute;
    top: 150px;
    left: calc( 50% - 40px );
    z-index: 10;
    width: 80px;
    height: 80px;
}

body > .loader-container > .lds-roller {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6008f3;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.main-screen--view-cource {
    padding-bottom: 30px;
}

.form-submit-confirmation-btn {
    cursor: pointer;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
}

.modal-header .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
}

.lesson-item--xs {
    border: 4px solid #ccc;
    transition: .3s;
    margin-top: 0;
    margin-bottom: 20px;
    border-radius: 4px;
}

.choose-lesson-checkbox:checked ~ .lesson-item--xs {
    border: 4px solid #6008f3;
    transition: .3s;
}

.lesson-item--xs .course-name {
    padding: 8px 5px 5px;
}

.my-cource-footer .button--100 {
    margin-top: 0;
}

.error-page-block {
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    text-align: center;
}

.error-page-number {
    font-size: 120px;
    line-height: 1;
    margin-bottom: 32px;
}

.error-page-title {
    font-size: 24px;
    margin-bottom: 32px;
}

.course-lesson__video {
    flex-shrink: 0;
}

.course-lesson__text-wrapper {
    margin-top: 0;
    margin-left: 24px;
}

.course-lesson__video_inner {
    position: relative;
}

.course-lesson__video_inner .courses-slider__item-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: auto;
    transition: .3s;
}

.course-lesson__video_inner:hover .courses-slider__item-img {
    transition: .3s;
    transform: translate(-50%, -50%) scale(1.25);
}

.tab {
    text-decoration: none;
}

.added-lesson-list .course-lesson {
    margin: 20px 0;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
}

.courses-slider__item-wrapper {
    height: 100%;
}

.lesson-item--xs {
    margin: 0;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.added-lesson-list .course-lesson:first-child {
    margin-top: 5px;
}

.upload-preview-image-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 175px;
    height: 100px;
    overflow: hidden;
    border-radius: 10px 0 10px 0;
}

.upload-preview-image-container img[src=""] {
    display: none;
}

.file-label {
    position: relative;
}

.upload-preview-image-container img {
    width: 100%;
    height: auto;
    /*max-height: 100px;*/
    /*object-fit: contain;
    object-position: center;*/
    border-radius: 10px 0 10px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.dz-image {
    display: none;
}

.button.disabled {
    pointer-events: none;
    background: #e8ecee;
    color: #212529;
    cursor: not-allowed;
}

.info-modal {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    text-align: center;
}

.reviews-header {
    align-items: center;
}

.reviews-quantity {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 12px;
}

.slick-prev, .slick-next {
    display: block;
    border: none;
    cursor: pointer;
    transition: .3s all;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    position: absolute;
    top: calc( 50% - 32px );
    text-indent: -9999px;
    background: rgba(255,255,255,1) url("../img/arrow.svg") no-repeat center/25%;
    z-index: 1;
    outline: none !important;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.slick-prev:hover, .slick-next:hover {
    /*transition: .3s all;*/
    /*box-shadow: 0 2px 20px rgba(0,0,0,.3);*/
    /*background-color: rgba(0,0,0,.9);*/
}

.slick-next {
    right: -32px;
}

.slick-prev {
    left: -32px;
    transform: rotate(180deg);
    text-indent: 9999px;
}

.slick-arrow.slick-disabled {
    background-color: rgba(0,0,0,.2) !important;
    pointer-events: none;
    opacity: 0;
}

.dashboard-menu {
    transform: none !important;
}

.dashboard-menu__btn {
    display: none !important;
}

.header__burger {
    display: none;
}

rating input[type=radio]:valid,
rating input[type=radio]:after {
    color: #ddd !important;
}

rating input[type=radio]:checked,
rating input[type=radio]:checked:after,
rating input[type=radio]:checked ~ input[type=radio],
rating input[type=radio]:checked ~ input[type=radio]:after {
    color: orange !important;
}

.sws-rating {
    display: flex;
    flex-direction: row-reverse;
}

.file-label p {
    width: 100%;
    max-width: 330px;
}

.sws-error-message {
    margin-top: 12px;
}

.sws-error-message p {
    color: red;
}

.sws-added-stripe-account-wrapper {
    position: relative;
}

.sws-added-stripe-account {
    position: relative;
}

/*.invalid-input {*/
/*    background: url("../img/unchecked_round.svg") no-repeat right 12px center/32px;*/
/*}*/

.invalid-input-wrapper:after {
    content: '';
    width: 32px;
    height: 32px;
    background: url("../img/unchecked_round.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: 6px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.valid-input-wrapper:after {
    content: '';
    width: 32px;
    height: 32px;
    background: url("../img/checked_round.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: 6px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.input-item .label {
    display: block;
}

.modal-window > div, .modal-window__content {
    position: relative;
}

.close-modal-btn {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, .75) url("../img/cross_icon.svg") no-repeat center/75%;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}

.sws-static-page-content > * {
    margin-bottom: 16px;
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.5715em + .875rem + 2px);
    margin-bottom: 0;
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(1.5715em + .875rem + 2px);
    margin: 0;
    overflow: hidden;
    opacity: 0;
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5715em + .875rem + 2px);
    padding: .4375rem .875rem;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5715;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: .25rem;
}

.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Browse";
}
.custom-file-label:after {
    border-top-right-radius: calc(.25rem - 1px);
    border-bottom-right-radius: calc(.25rem - 1px);
}
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5715em + .875rem);
    padding: .4375rem .875rem;
    line-height: 1.5715;
    color: #333;
    content: "Browse";
    background-color: #f0f2f5;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0;
}

.sws-file-input {
    display: none;
}

.sws-file-input-wrapper .input-item label {
    border-radius: 40px;
    background: transparent;
    color: #6008f3;
    border: 1px solid #6008f3;
    transition: .3s;
    padding: 10px 36px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.sws-file-input-wrapper .input-item label:hover {
    transition: .3s;
    background: #6008f3;
    color: #fff;
}

.sws-chosen-file-wrapper:not(.active) {
    display: none;
}

.sws-chosen-file-wrapper {
    width: 100%;
    min-height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -10px 0 20px;
    padding: 8px 60px 8px 20px;
    background: #f0f6f7;
    position: relative;
}

.learn-item {
    align-items: flex-start;
}

.learn-item img {
    margin-top: 3px;
}

.learn-item a {
    color: #6002FC;
    text-decoration: none;
}

.learn-item a:hover {
    text-decoration: underline;
}

.sws-chosen-file-wrapper .delete-btn {
    position: absolute;
    top: 0;
    right: 0;
}

.sws-chosen-file-name {
    width: 100%;
    line-height: 1.3;
    padding-right: 16px;
    font-size: 14px;
}

.sws-delete-chosen-file {

}

.remove-btn {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: url("../img/unchecked_round.svg") no-repeat center/100%;
    border: none;
    outline: none;
    border-radius: 4px;
    transition: .3s;
}

.remove-btn:hover {
    transition: .3s;
    filter: brightness(1.25);
}

@media screen and (max-width: 1199px) {
    .main-screen__title {
        font-size: 80px;
    }
}

@media screen and (max-width: 991px) {
    #open-video .modal-window__content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .modal-window {
        background: rgba(0, 0, 0, .85);
    }
}

@media screen and (max-width: 767px) {
    .main-screen__title {
        font-size: 50px;
    }

    .sws-search .col-md-6 + .col-md-6 {
        margin-top: 22px;
    }

    .close-modal-btn {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .ui-widget.ui-widget-content {
        margin: 0 8px;
    }

    .pagination {
        flex-flow: wrap;
        justify-content: center;
    }

    .learn-section--l {
        padding-bottom: 0;
    }

    .checkbox-wrapper {
        margin-top: 24px;
    }

    .wallet-content {
        width: 100%;
    }

    .dashboard {
        flex-flow: wrap;
    }

    .dashboard-menu {
        width: 100%;
        border: none;
        padding: 0 16px;
    }

    .dashboard-content {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        margin: 32px 0;
    }

    .content {
        padding-top: 70px;
    }

    .header__nav {
        height: calc( 100vh - 55px );
        width: 100vw;
        transition: none !important;
        flex-flow: column;
        overflow-y: auto;
    }

    .header {
        padding: 15px 0 !important;
    }

    .header__logo {
        margin-left: 0;
    }

    .slick-prev, .slick-next {
        width: 40px;
        height: 40px;
    }

    .slick-next {
        right: -15px;
    }

    .slick-prev {
        left: -15px;
    }
}

.courses-slider__item--lesson .courses-slider__item-wrapper {
    position: relative;
    padding-bottom: 107px;
}

.sws-student-card-lesson-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2px;
}
