/*-------------------------------------------------*/
/* =  basic.begin
/*-------------------------------------------------*/

html,
body {
    overflow-x: hidden;
    /* user-select: none; */
}

body {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 16, 17, 1)), to(rgba(37, 37, 37, 1)));
    background: linear-gradient(to bottom, rgba(16, 16, 17, 1) 0%, rgba(37, 37, 37, 1) 100%);
    color: #fff;
    text-align: left;
    font-family: "Montserrat", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
}

body::-webkit-scrollbar-track {
    /*     -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
    border-radius: 10px;
    /*     background-color: transparent; */
}

body::-webkit-scrollbar {
    width: 7px;
    /*     background-color: transparent; */
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    /*     background-color: transparent; */
    transition: all 2s ease-out;
}

body:hover::-webkit-scrollbar-thumb {
    background-color: #aaa;
}

input,
select,
button,
textarea {
    font-family: "Montserrat", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1137px;
    margin: 0 auto;
    padding-top: 58px;
    padding-bottom: 58px;
}

a {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

a:hover,
a:focus {
    color: #00f8f1;
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

/* footer bottom */

html,
body {
    height: 100%;
}
.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.wrapper-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 16, 17, 1)), to(rgba(37, 37, 37, 1)));
    background: linear-gradient(to bottom, rgba(16, 16, 17, 1) 0%, rgba(37, 37, 37, 1) 100%);
}
.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

/* social */

.social {
    padding: 0;
    margin: 0;
    z-index: 99;
}

.social > li {
    list-style: none;
    font-size: 16px;
    font-weight: 400;
}
.social > li + li {
    margin-left: 20px;
}
.social > li > a {
    width: 26px;
    height: 26px;
    line-height: 1;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
    -webkit-transition: color 0.3s ease, border-color 0.3s ease;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-radius: 50%;
}
.social > li > a:hover,
.social > li > a:focus,
.social > li > a:active,
.social > li > a:hover i,
.social > li > a:focus i,
.social > li > a:active i {
    border-color: #00fbf4;
    color: #00fbf4;
}

/* link style */

.link {
    display: block;
    text-decoration: underline;
    color: rgb(190, 190, 190);
    font-weight: 700;
}

.link:hover,
.link:focus,
.link:active {
    color: #00fbf4;
    text-decoration: none;
}

/* link back style */

.link-back {
    color: #fff;
    font-weight: 600;
    padding-left: 23px;
    position: relative;
    font-size: 16px;
}
.link-back:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 10px 5px 0;
    border-color: transparent #fff transparent transparent;
    margin-top: -5px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.link-back:hover:before,
.link-back:focus:before,
.link-back:active:before {
    border-right-color: #00f8f1;
    transform: translateX(-3px);
}

@media screen and (max-width: 576px) {
    .link-back {
        font-size: 13px;
    }
}

/* buttons style */
/* 
.btn {
    min-width: 270px;
    position: relative;
    padding-top: 0.563rem;
    padding-bottom: 0.563rem;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    border-radius: 10px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.red {
    background: -webkit-gradient(linear, left top, left bottom, from#00f8f1, to#00f8f1);
    background: linear-gradient(to bottom, #00f8f1 0%, #00f8f1 100%);
}

.red:hover,
.red:focus,
.red:active {
    color: rgba(255, 255, 255, 1);
    opacity: 0.9;
}

.btn-secondary {
    border-color: transparent;
    background: linear-gradient(to bottom, rgba(91, 91, 91, 1) 0%, rgba(75, 75, 75, 1) 100%);
}

.btn-signup {
    background: -webkit-gradient(linear, left top, left bottom, from#00f8f1, to#00f8f1);
    background: linear-gradient(to bottom, #00f8f1 0%, #00f8f1 100%);
}

.btn-signup:hover,
.btn-signup:focus,
.btn-signup:active {
    color: rgba(255, 255, 255, 1);
    opacity: 0.9;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    color: rgba(255, 255, 255, 1);
    opacity: 0.9;
}

.btn-xs {
    font-size: 16px;
    min-width: 1px;
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
    border-radius: 4px;
}

.btn-sm {
    min-width: 125px;
    font-size: 20px;
    padding-top: 0.32rem;
    padding-bottom: 0.32rem;
    border-radius: 4px;
}
*/
@media screen and (max-width: 576px) {
    .btn {
        font-size: 20px;
        min-width: 100%;
    }

    .btn-xs {
        font-size: 14px;
    }
}

/* buttons edit style */
/* 
.btn-edit {
    font-size: 18px;
    min-width: 34px;
    max-width: 34px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    padding: 0;
    border: 1px solid rgba(0, 250, 243, 0);
    color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.btn-edit i {
    transition: transform 0.3s ease;
}

.btn-edit:hover,
.btn-edit:focus,
.btn-edit:active {
    border: 1px solid rgba(0, 250, 243, 0.5);
    color: rgba(255, 255, 255, 0.75);
}

.btn-edit:hover i {
    transform: rotate(180deg);
} */

/* new button */

.btn {
    padding: 1em 2.1em 1.1em;
    border-radius: 3px;
    color: #fbdedb;
    background-color: rgba(0, 251, 244, 0.612);
    display: inline-block;
    transition: 0.3s;
    font-family: sans-serif;
    font-weight: 800;
    font-size: 0.85em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    box-shadow: 0em -0.3rem 0em rgba(0, 0, 0, 0.1) inset;
    position: relative;
}
.btn:hover,
.btn:focus {
    opacity: 0.8;
}
.btn:active {
    transform: scale(0.8);
}
.btn.block {
    display: block !important;
}
.btn.circular {
    border-radius: 50em !important;
}
.green {
    background-color: #5bbd72;
}
.red {
    background: #e74c3c;
}
.transparent {
    background: transparent;
}

/* breadcrumb */

.breadcrumb-custom {
    padding: 0;
    background: none;
    font-size: 13px;
}
.breadcrumb-custom,
.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-custom .breadcrumb-item a,
.breadcrumb-custom .breadcrumb-item.active {
    color: rgba(0, 251, 244, 0.651);
}
.breadcrumb-custom .breadcrumb-item a {
    text-decoration: underline;
}
.breadcrumb-custom .breadcrumb-item a:hover,
.breadcrumb-custom .breadcrumb-item a:focus,
.breadcrumb-custom .breadcrumb-item a:active {
    text-decoration: none;
}

/* form */

.form-radio {
    padding-left: 0;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 0;
}
.form-radio + .form-radio {
    margin-top: 10px;
}

.form-radio .form-check-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.form-radio .form-check-text {
    padding-left: 32px;
    position: relative;
    display: block;
}
.form-radio .form-check-text span:not(.form-check-i) {
    font-size: 14px;
}

.form-radio .form-check-i,
.form-radio .form-check-i:before {
    position: absolute;
    border-radius: 50%;
}

.form-radio .form-check-i {
    top: 2px;
    left: 0;
    width: 18px;
    height: 18px;
    background: #fff;
    margin: 0;
}
.form-radio .form-check-i:before {
    content: "";
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    background: #00c900;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.form-radio .form-check-input:checked + .form-check-text .form-check-i:before {
    transform: scale(1);
}

.form-check .form-control,
select.form-control {
    height: 41px;
    font-size: 14px;
    padding-left: 15px;
    font-weight: 700;
    color: #fff;
    border-radius: 6px;
    background-color: rgba(11, 94, 152, 0);
    border-color: rgba(255, 255, 255, 0.533);
}

/* form search */

.form-search {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.form-search .form-control {
    font-weight: 600;
    padding-right: 45px;
    color: #fff;
    height: 41px;
    border: 1px solid rgba(0, 249, 242, 0.4);
    background-color: rgba(11, 94, 152, 0.141);
    border-radius: 7px;
}

.mat-select-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    font-family: "Montserrat", Arial, "Helvetica CY", "Nimbus Sans L", "sans-serif";
}

.form-search .form-control:-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
}
.form-search .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
}
.form-search .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
}
.form-search .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
}

.form-search .form-submit {
    background: none;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}
.form-search .form-submit:hover,
.form-search .form-submit:focus,
.form-search .form-submit:active {
    color: rgba(255, 255, 255, 1);
}

/* range slider */

.slider.slider-horizontal .slider-handle {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}

.slider.slider-horizontal .slider-handle,
.slider.slider-horizontal .slider-selection {
    background: #00f7f1;
}

.slider.slider-horizontal .slider-track {
    background: #5a5d5f;
}

.slider.slider-horizontal .tooltip-main {
    opacity: 1;
    background: none;
}

.slider.slider-horizontal .tooltip.top {
    margin-top: -28px;
}

.slider.slider-horizontal .tooltip-main .tooltip-inner {
    color: #00f7f1;
    font-weight: 600;
    font-size: 18px;
    background: none;
    padding-top: 0;
    padding-bottom: 0;
}
.slider.slider-horizontal .tooltip-main .tooltip-arrow {
    display: none;
}

/* scrollbar style */

.js-scrollbar {
    position: relative;
}
.js-scrollbar .ps__thumb-y {
    background-color: rgba(255, 255, 255, 0.2);
    width: 4px;
}
.js-scrollbar-x-hide .ps__rail-x {
    display: none !important;
}

/* users */

.users {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.user {
    display: block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    position: relative;
    background: #fff;
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
}
.user:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    z-index: 1;
}

.user:nth-of-type(1) {
    color: #4a4a4b;
    background: #4a4a4b;
}
.user:nth-of-type(2) {
    color: #bcbcbc;
    background: #bcbcbc;
}
.user:nth-of-type(2),
.user:nth-of-type(3) {
    margin-left: -25px;
}
.user i {
    position: relative;
    z-index: 1;
}

/* banner promo */

.banner-promo {
    padding-bottom: 100%;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 20px auto;
    text-transform: uppercase;
}
.banner-promo:before {
    content: "Banner Promo";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 18px;
    color: #000;
    transform: translate(-50%, -50%);
}

.twitch-stream__status {
    padding-left: 18px;
    position: relative;
    display: block;
}

.twitch-stream__status::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4a4d50;
    margin-top: -7px;
    box-shadow: 0em -0.3rem 0em rgba(0, 0, 0, 0.1) inset;
}

.twitch-stream__status--online {
    color: #fff;
}

.twitch-stream__status--online::before {
    background: #57ff7b;
}

.twitch-stream__status--scheduled::before {
    background-color: #6a3bc0;
}

.friends-status {
    padding-left: 32px;
    font-size: 10px;
    color: #a8a8a8;
    font-weight: 600;
    margin-top: 5px;
}

.friends-status-inner {
    padding-left: 18px;
    position: relative;
    display: block;
}

.friends-status-inner:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4a4d50;
    margin-top: -7px;
}

.friends-list-item.online .friends-list-name {
    color: #fff;
}

.friends-list-item.online .friends-status-inner:before {
    background: #57ff7b;
}

@media screen and (max-width: 991px) {
    .banner-promo {
        padding-bottom: 50%;
    }
}

/*-------------------------------------------------*/
/* =  basic.end
/*-------------------------------------------------*/
