@import url('https://fonts.cdnfonts.com/css/azonix');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    /*font-family: "Open Sans", sans-serif;*/
}

body {
    background-color: #171717;
}

.btn {
    color: #fff;
}

a:hover {
    text-decoration: none;
}

.logo-image {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.logo-image h1 {
    display: block;
    font-family: 'Azonix', sans-serif;
    font-size: 5rem;
    color: #fff;
    letter-spacing: 2px;
}

@media only screen and (max-width: 768px) {
    .logo-image {
        align-items: center;
    }
    .logo-image h1 {
        font-size: 3.5rem;
    }
    .logo-image img {
        max-height: 100px;
    }
}

.logo-image img {
    max-height: 142px;
    /*margin-right: 1rem;*/
}

.navbar-dark {
    background-color: #121212;
}

.navbar-toggler.x {
    width: 50px;
    height: 40px;
}

.navbar-toggler.x:focus {
    outline: none;
}

.navbar-toggler.x[aria-expanded=true] .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 10% 10%;
    -ms-transform-origin: 10% 10%;
    transform-origin: 10% 10%;
}

.navbar-toggler.x[aria-expanded=true] .icon-bar:nth-of-type(2) {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler.x[aria-expanded=true] .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 10% 90%;
    -ms-transform-origin: 10% 90%;
    transform-origin: 10% 90%;
}

.navbar-toggler.x .icon-bar {
    width: 24px;
    height: 2px;
    display: block;
    margin: 6px 0;
    background-color: #888;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.navbar-toggler.x[aria-expanded=true] {
    border: none;
}

.navbar-toggler.x[aria-expanded=true] .icon-bar {
    width: 22px;
    margin: 0;
}

.navbar-toggler.x .icon-bar + .icon-bar {
    margin-top: 4px;
}

.navbar-toggler.x .icon-bar:nth-of-type(1) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.navbar-toggler.x .icon-bar:nth-of-type(2) {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.x .icon-bar:nth-of-type(3) {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.navbar-nav {
    padding: 6px 10px;
}

.navbar-nav .nav-item .nav-link.pretty-nav-border {
    position: relative;
}

.navbar-nav .nav-item .nav-link.pretty-nav-border:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    display: inline-block;
    height: 2px;
    width: 100%;
    border-bottom: 2px solid transparent;
    margin-bottom: -15px;
    transition: border-bottom .2s ease;
    pointer-events: none;
}

.navbar-nav .nav-item:hover .nav-link.pretty-nav-border:after {
    border-bottom: 2px solid #932e3e;
}

@media only screen and (max-width: 768px) {
    .navbar-nav .nav-item .nav-link.pretty-nav-border:after {
        display: none;
    }
    .navbar-nav .nav-item:hover .nav-link.pretty-nav-border:after {
        border-bottom: 0;
    }
}

.navbar-nav .nav-item.dropdown:hover .nav-link.pretty-nav-border:after {
    display: none;
}

.top-navbar {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.top-navbar .socials {
    gap: 6px;
    flex-direction: row-reverse;
}

.top-navbar .socials .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 20px;
}

.top-navbar .socials .social-youtube {
    color: #dc3545;
}

.top-navbar .socials a:hover {
    transition: .3s all;
    transform: scale(1.2);
}

.top-navbar .socials .social-youtube:hover {
    color: #fff;
}

.top-navbar .socials .social-instagram {
    color: transparent;
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -moz-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
}
.top-navbar .socials .social-github {
    color: #fff;
}

.top-navbar .socials .social-tiktok {
    color: #111111;
    filter: drop-shadow(2px 0px 0px #FD3E3E) drop-shadow(-2px -2px 0px #4DE8F4);
}

.middle-navbar {
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    direction: rtl;
}

.middle-navbar ul {
    direction: ltr;
}

#collapsible-navbar {
    gap: 10px;
}

#collapsible-navbar .dropdown-menu {
    background-color: #171717;
    width: max-content;
}

#collapsible-navbar .dropdown-menu.show {
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-top: 0;
}

@media only screen and (max-width: 768px) {
    .nav-bar-filter {
        flex-direction: column-reverse !important;
    }
}

.footer {
    background-color: #121212;
    color: #7e7e7e;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
}

.pagination-panel {
    display: flex;
    justify-content: center;
}

ul.custom-pagination {
    gap: 2px;
}

ul.custom-pagination li.page-item a.page-link {
    border-radius: 4px;
    color: #dc3545;
    background-color: #1f1f1f;
    border-color: #1f1f1f;
}

ul.custom-pagination li.page-item.disabled a.page-link {
    color: #6c757d;
    opacity: .6;
}

ul.custom-pagination li.page-item.disabled.active a.page-link {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    opacity: 1;
}

ul.custom-pagination li.page-item a.page-link:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.random-video {
    width: 100%;
    min-height: 190px;
}

#refresh-random-video {
    color: #932e3e;
    transition: .3s all;
}

#refresh-random-video:hover {
    color: #dc3545;
}

.shorts {
    width: 100%;
    height: auto;
    min-height: 350px;
    aspect-ratio: 9 / 16;
}

@media only screen and (max-width: 768px) {
    .random-video {
        min-height: 210px;
    }
}

/* youtube statistics */

.youtube-card {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    border: none;
    min-width: 25%;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 5px 3px 45px -25px rgba(0, 0, 0, 0.39);
    /*width: 60%;*/
    height: auto;
}

.youtube-card img {
    border-radius: 50%;
    border: 1px solid #932e3e;
    padding: 3px;
    height: 100px;
    width: 100px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}

.youtube-card p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #bdc3c7;
    margin-top: 0;
    margin-bottom: 12px;
}

.youtube-card p.youtube-statistics-item {
    font-size: 3rem;
    margin-top: 14px;
    margin-bottom: 0;
    color: #2c3e50;
}

.youtube-statistics ul {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.youtube-statistics ul li {
    list-style: none;
    flex: 0 0 33.333333%;
}

@media (max-width: 1200px) {
    .youtube-card {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .youtube-statistics ul {
    }
}

/* end of youtube statistics */

input, select, textarea{
    color: #fff !important;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    border-color: rgba(147, 46, 63, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(147, 46, 63, 0.6);
    outline: 0 none;
}

.search-bar {
    direction: ltr;
    /*min-width: 130px;*/
}

.search-bar input, .search-bar button {
    background-color: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, .08);
}

.search-bar input {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.search-bar button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.form-control:focus {
    background-color: #121212;
}

.panel-btn {
    text-align: center;
}

.panel-btn:hover a {
    color: #fff !important;
}

ul.sidebar-videos, ul.sidebar-comments {
    list-style-type: none;
    margin-bottom: 0;
}

ul.sidebar-videos li, ul.sidebar-comments li {
    margin: 0 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

ul.sidebar-videos li:last-child, ul.sidebar-comments li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

ul.sidebar-videos li img {
    margin: 0 15px 0 0;
    float: left;
    width: 110px;
    height: 65px;
}

ul.sidebar-comments li img {
    margin: 0 15px 0 0;
    float: left;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

ul.sidebar-videos li h3, ul.sidebar-comments li h3 {
    line-height: 1.3;
    font-size: 1rem;
    /*margin: 0 0 5px;*/
    margin: 0;
}

ul.sidebar-videos li h3 a, ul.sidebar-comments li h3 a {
    color: #fff;
}

ul.sidebar-videos li small, ul.sidebar-comments li small {
    font-size: 12px;
    color: #838383;
    /*margin: 0 0 5px;*/
    margin: 0;
    display: block;
}

ul.sidebar-videos li:hover img, ul.sidebar-comments li:hover img {
    opacity: .8;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .5);
    transition: .3s all;
}

ul.sidebar-videos li:hover a, ul.sidebar-comments li:hover a {
    color: #932e3e;
    transition: .3s all;
}

/* video section */
.thumb-wrap {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    height: 250px;
}
@media only screen and (max-width: 768px) {
    .thumb-wrap {
        height: auto;
    }
}
.thumb-wrap .thumb-image {
    display: block;
    margin: .4em;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    opacity: 1;
    transition: all .2s ease-in-out;
}
.thumb-wrap:hover .thumb-info .thumb-title {
    color: #932e3e;
    transition: .3s all;
}
.thumb-wrap:hover .thumb-image {
    opacity: .8;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .5);
    transition: .3s all;
}
.thumb-wrap .thumb-info {
    position: relative;
    display: inline-block;
    height: auto;
    width: 100%;
    padding: .4em;
}
.thumb-wrap .thumb-actions {
    position: absolute;
    right: 0;
    margin-top: -50px;
    margin-right: 10px;
    display: none;
    flex-direction: row;
    gap: 6px;
    animation: flyIn 0.5s forwards;
    opacity: 0;
}
.thumb-wrap:hover .thumb-actions {
    display: flex;
}
@keyframes flyIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.thumb-wrap .thumb-actions i {
    color: #fff;
    background-color: rgba(255, 255, 255, .8);
    padding: 8px;
    border-radius: 4px;
    font-size: 20px;
}
.thumb-wrap .thumb-actions i.fa-globe {
    background-color: #007bff;
}
.thumb-wrap .thumb-actions i.fa-github {
    background-color: #343a40;
}
.thumb-wrap .thumb-actions i.fa-download {
    background-color: #ffc107;
}
.thumb-wrap .thumb-actions i:hover {
    transform: scale(1.2);
    transition: .3s all;
}
.thumb-wrap .thumb-info .thumb-title {
    color: #f5f5f5;
    margin: 0;
    font-size: 1.2em;
}
.thumb-wrap .thumb-info .thumb-user {
    color: #7e7e7e;
    display: block;
    margin: 0;
    font-size: .9em;
}
.thumb-wrap .thumb-info .thumb-text {
    color: #7e7e7e;
    display: inline-block;
    margin: 0;
    font-size: .8em;
}
.short-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* end of video section */

/* slider */
.slick-slider .slick-prev,
.slick-slider .slick-next {
    z-index: 100;
    font-size: 2.5em;
    height: 40px;
    width: 40px;
    color: #fff;
    position: absolute;
    top: 50%;
    text-align: center;
    opacity: 0.3;
    transition: opacity 0.25s;
    cursor: pointer;
}
.slick-slider .slick-prev {
    margin-left: -40px;
}
.slick-slider .slick-next {
    margin-right: -40px;
}
@media only screen and (max-width: 1014px) {
    .slick-slider .slick-prev, .slick-slider .slick-next {
        display: none !important;
    }
}
.slick-slider .slick-prev:hover,
.slick-slider .slick-next:hover {
    opacity: 0.65;
}
.slick-slider .slick-prev {
    left: 0;
}
.slick-slider .slick-next {
    right: 0;
}

.showcase-slider .product-images {
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    background: #1f1f1f;
}
.showcase-slider .product-images li,
.showcase-slider .product-images figure,
.showcase-slider .product-images a,
.showcase-slider .product-images img {
    display: block;
    outline: none;
    border: none;
}
.showcase-slider .product-images .main-img-slider .main-img-container {
    display: flex;
    flex-direction: row;
    gap: 0 20px;
    padding: 20px;
}
.showcase-slider .product-images .main-img-slider .main-img-container iframe {
    display: block;
    width: 100%;
    min-height: 290px;
}
.showcase-slider .product-images .main-img-slider .main-img-container .post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: fit-content;
    color: #888;
}
.showcase-slider .product-images .main-img-slider .main-img-container .post-content .bottom-buttons {
    display: flex;
    gap: 10px;
}
.showcase-slider .product-images .main-img-slider .main-img-container .post-content .entry-title {
    color: #fff;
}
@media only screen and (max-width: 768px) {
    .showcase-slider .product-images .main-img-slider .main-img-container {
        flex-direction: column;
        gap: 20px 0;
        padding: 6px;
    }
    .showcase-slider .product-images .main-img-slider .main-img-container iframe {
        min-height: 200px;
    }
    .showcase-slider .product-images .main-img-slider .main-img-container .post-content {
        padding: 0 6px;
    }
}
.showcase-slider .product-images .main-img-slider figure {
    margin: 0 auto;
    padding: 0 2em;
}
.showcase-slider .product-images .main-img-slider figure a {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}
.showcase-slider .product-images .main-img-slider figure a img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.showcase-slider .product-images .thumb-nav {
    margin: 0 auto;
    padding: 20px 10px;
    max-width: 600px;
}
.showcase-slider .product-images .thumb-nav.slick-slider .slick-prev,
.showcase-slider .product-images .thumb-nav.slick-slider .slick-next {
    font-size: 1.2em;
    height: 20px;
    width: 26px;
    margin-top: -10px;
}
.showcase-slider .product-images .thumb-nav.slick-slider .slick-prev {
    margin-left: -30px;
}
.showcase-slider .product-images .thumb-nav.slick-slider .slick-next {
    margin-right: -30px;
}
.showcase-slider .product-images .thumb-nav li {
    display: block;
    margin: 0 auto;
    cursor: pointer;
}
.showcase-slider .product-images .thumb-nav li img {
    display: block;
    width: 100%;
    max-width: 100px;
    margin: 0 auto;
    border: 2px solid transparent;
    -webkit-transition: border-color 0.25s;
    -ms-transition: border-color 0.25s;
    -moz-transition: border-color 0.25s;
    transition: border-color 0.25s;
}
.showcase-slider .product-images .thumb-nav li:hover,
.showcase-slider .product-images .thumb-nav li:focus {
    border-color: #999;
}
.showcase-slider .product-images .thumb-nav li.slick-current img {
    border-color: #d12f81;
}

/* end of slider */

.active {
    color: #932e3e;
}

html {
    /*height: 100%;*/
    /*background: #000;*/
    /*background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.75) 100%), url("https://playcs.eu/assets/images/background.jpg");*/
    /*background-repeat: no-repeat;*/
    /*background-attachment: fixed !important;*/
    /*background-size: cover;*/
}

body {
    font-size: 14px;
    line-height: 1.42857143;
    height: 100%;
    /*background: #000;*/
    /*background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.75) 100%), url("https://playcs.eu/assets/images/background.jpg") !important;*/
    /*background-repeat: no-repeat;*/
    /*background-attachment: fixed !important;*/
    /*background-size: cover;*/
}

/* scrollbal */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #932e3e;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

li a.active {
    background-color: #4caf50;
    color: white;
}

.grecaptcha-badge {
    display: none !important;
}

.bs-callout {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-left-width: 5px;
    border-radius: 4px;
    background-color: #1f1f1f;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.bs-callout h4 {
    margin-top: 0;
    margin-bottom: 5px;
}

.bs-callout p:last-child {
    margin-bottom: 0;
}

.bs-callout code {
    border-radius: 3px;
}

.bs-callout + .bs-callout {
    margin-top: -5px;
}

.bs-callout-default {
    border-left-color: #777;
}

.bs-callout-default h4 {
    color: #777;
}

.bs-callout-primary {
    border-left-color: #428bca;
}

.bs-callout-primary h4 {
    color: #428bca;
}

.bs-callout-success {
    border-left-color: #5cb85c;
}

.bs-callout-success h4 {
    color: #5cb85c;
}

.bs-callout-danger {
    border-left-color: #d9534f;
}

.bs-callout-danger h4 {
    color: #d9534f;
}

.bs-callout-warning {
    border-left-color: #f0ad4e;
}

.bs-callout-warning h4 {
    color: #f0ad4e;
}

.bs-callout-info {
    border-left-color: #5bc0de;
}

.bs-callout-info h4 {
    color: #5bc0de;
}

.bs-callout-news {
    border-left-color: #932e3e;
}

.bs-callout-news h4 {
    color: #fff;
}

.bs-callout-news a {
    color: #932e3e;
}

.bs-callout-news a:hover, .bs-callout-news a:focus {
    color: #f2667c;
    text-decoration: underline;
}

.news_overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: 0.5s ease;
    background-color: #000;
}

.news_readmore {
    position: relative;
    /*width: 50%;*/
}

.news_readmore:hover .news_overlay {
    opacity: 0.9;
    cursor: pointer;
}

.news_overlay .text {
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.news-bottom a {
    font-weight: bold;
    color: #000;
}

.news-bottom a:hover {
    color: #932e3e;
}

.footer-color {
    color: #fff;
    background: #00000000 !important;
}

.footer-color a {
    color: #932e3e;
    font-size: 16px;
    text-decoration: none;
}

.footer-color a:hover {
    text-decoration: none;
    color: #fff;
}

.footer-table {
    width: 100%;
    height: 100px;
    /*float: left;*/
    background-color: rgba(0, 0, 0, 0.13);
    border-radius: 25px;
    margin-left: auto;
    margin-right: auto;
}

.footer-table td.odkaz {
    padding: 0 8px 0 8px;
    text-align: left;
}

.footer-table td.odkaz a {
    color: #fff;
}

.footer-table td.odkaz a:hover {
    text-decoration: none;
    color: #932e3e;
}

.footer-table td.odkaz i {
    /*color: #1e1f23;*/
    margin-top: -5px;
    margin-right: 3px;
    vertical-align: middle;
    font-size: 5px;
}

.top-panel-container {
    background: #151618;
    border-bottom: 1px solid #1e2126;
    position: fixed;
    top: 0;
    z-index: 1081;
    width: 100%;
}

.top-panel {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    display: flex;
    z-index: 2;
}

.top-panel-left {
    position: relative;
    float: left;
    height: 60px;
    width: 50%;
    line-height: 60px;
}

.top-panel-left a:first-child {
    margin-left: 16px;
}

.top-panel-left a {
    padding: 4px 6px;
    color: #414244;
}

.top-panel-left a:hover {
    background-color: #1c1d1f;
    color: #932e3e;
}

.top-panel-right {
    position: relative;
    line-height: 60px;
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.top-panel-right a {
    padding: 8px 8px;
    margin-right: 16px;
    background-color: #1c1d1f;
    color: #932e3e;
    border: 1px solid #000;
    border-radius: 4px;
}

.top-panel-right a:hover {
    color: #fff;
}

.top-panel-right a:focus {
    border: 1px solid #932e3e;
    color: #fff;
}

.nav-input-group {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: table;
    border-collapse: separate;
    padding: 0 8px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.search {
    line-height: 16px;
}

.nav-input-group-addon:first-child {
    border-right: 0;
}

.nav-input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    /*line-height: 1;*/
    line-height: 20px;
    color: #932e3e;
    text-align: center;
    background-color: #18191b;
    border: 1px solid #000;
    border-radius: 4px;
}

.nav-input-group .form-control {
    display: block;
    position: relative;
    z-index: 2;
    float: left;
    /*width: 120px;*/
    margin-bottom: 0;
    color: #525864;
    background-color: #1e1f23;
    border: 1px solid #000;
    font-family: "Russo One", sans-serif;
    text-transform: uppercase;
}

.nav-input-group .form-control:hover {
    color: #932e3e;
}

.form-custom-focus:focus {
    border-color: #932e3e !important;
    box-shadow: 0 0 0 0.2rem rgba(147, 46, 62, 0.25) !important;
}

.slider-panel {
    position: relative;
    width: 100%;
    height: 400px;
    background: #000;
}

.slider-image {
    position: absolute;
    width: 100%;
}

.slider-image img {
    /*width: 200px;*/
    object-fit: cover;
}

.slide {
    width: 100%;
    height: 400px;
    display: inline;
    float: left;
    position: absolute;
}

.slider-panel-left {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 32%;
    margin-left: 120px;
}

.slider-panel-left .slider-heading {
    font-family: "Source Serif Pro", serif;
    font-size: 36px;
    font-weight: bold;
    position: relative;
    margin-top: 30px;
    padding: 10px 24px;
    color: #fff;
    width: 100%;
    line-height: 40px;
    height: 100px;
}

.slider-panel-left .slider-content {
    font-family: "Maven Pro", sans-serif;
    position: relative;
    margin-top: 10px;
    padding: 10px 24px;
    color: #fff;
    width: 100%;
    height: 180px;
}

.slider-panel-left .slider-content a {
    color: #932e3e;
}

.slider-panel-left button.slider-button {
    margin-top: 6px;
    margin-left: 26px;
    height: 40px;
    width: 36%;
    border: 2px solid #932e3e;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: "Arimo", sans-serif;
    color: #932e3e;
    background-color: #000000f9;
}

.slider-panel-left button.slider-button:hover {
    color: #fff;
    border: 2px solid #fff;
}

.slider-panel .left-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 28px;
    width: 50px;
    height: 50px;
    font-size: 30px;
    border: 2px solid #932e3e;
    border-radius: 4px;
    color: #932e3e;
    text-align: center;
    line-height: 50px;
}

.slider-panel .right-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: 28px;
    width: 50px;
    height: 50px;
    font-size: 30px;
    border: 2px solid #932e3e;
    border-radius: 4px;
    color: #932e3e;
    text-align: center;
    line-height: 50px;
}

.slider-panel .left-arrow:hover, .slider-panel .right-arrow:hover {
    color: #fff;
    border: 2px solid #fff;
}

.navigation-panel {
    position: relative;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80px;
    background: #131416;
    text-align: center;
    line-height: 80px;
    /*margin-bottom: 20px;*/
    display: flex;
    border-top: 1px solid #1e2126;
    border-bottom: 1px solid #1e2126;
}

#mobile-bars {
    display: none;
    position: relative;
    z-index: 20;
    padding: 20px;
}

#mobile-bars:hover {
    cursor: pointer;
    color: #932e3e;
}

#overlay-mobile-menu {
    position: fixed;
    z-index: 100;
    display: none;
    width: 100%;
    height: 100%;
    color: #fff;
    overflow: hidden !important;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%), url(../images/background.jpg);
    background-size: cover;
    border-top: 8px solid #932e3e;
    border-bottom: 8px solid #932e3e;
}

.mobile-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    font-size: 1rem;
    font-weight: bold;
    /*background-color: #40404080;*/
    /*margin: 0.8rem;*/
    border-radius: 10px;
}

.mobile-menu ul li:hover {
    background-color: #6b6b6b80;
}

.mobile-menu ul li a {
    /*font-family: 'FontAwesome', serif;*/
    color: #ddd;
    display: block;
    width: 100%;
    transition: .3s linear;
    padding: 1.2rem;
}

.mobile-menu ul li a:hover {
    text-decoration: none;
    color: #932e3e;
}

.mobile-bars-close {
    font-size: 26px;
    position: absolute;
    top: 30px;
    right: 40px;
}

.mobile-bars-close:hover {
    cursor: pointer;
    color: #932e3e;
}

.navigation-panel-left {
    height: 80px;
    width: 50%;
    position: relative;
}

.navigation-panel-left ul {
    float: right;
    margin: auto;
    list-style-type: none;
    padding: 0;
    overflow: hidden;
    justify-content: center;
    display: flex;
    text-transform: uppercase;
    margin-right: 40px;
}

.navigation-panel-left li {
    margin-top: -4px;
}

.navigation-panel-left li a {
    display: block;
    color: white;
    text-align: center;
    padding: 0 12px;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
}

.navigation-panel-left li a:hover {
    color: #932e3e;
    border-bottom: 2px solid #932e3e;
}

.navigation-panel-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.navigation-panel-right {
    height: 80px;
    width: 50%;
    position: relative;
}

.navigation-panel-right ul#right-nav {
    float: left;
    margin: auto;
    list-style-type: none;
    padding: 0;
    overflow: hidden;
    justify-content: center;
    display: flex;
    text-transform: uppercase;
    margin-left: 40px;
}

.navigation-panel-right li {
    margin-top: -4px;
}

.navigation-panel-right li a {
    display: block;
    color: white;
    text-align: center;
    padding: 0 12px;
    text-decoration: none;
    font-family: "Oswald", sans-serif;
}

.navigation-panel-right li a:hover {
    color: #932e3e;
    border-bottom: 2px solid #932e3e;
}

/*.dropdown-menu {*/
/*    position: fixed !important;*/
/*    left: auto !important;*/
/*    margin: 4px 0 0 !important;*/
/*    background-color: #000 !important;*/
/*}*/

/*.dropdown-menu > li > a {*/
/*    font-family: "Oswald", sans-serif;*/
/*    color: #fff !important;*/
/*}*/

/*.dropdown-menu > li > a:hover {*/
/*    color: #000 !important;*/
/*}*/

/*.dropdown-menu > li > a > i {*/
/*    margin-right: 6px;*/
/*}*/

@media only screen and (max-width: 768px) {
    .navigation-panel-left, .navigation-panel-middle img, .navigation-panel-right, .navigation-panel-right-user {
        display: none !important;
    }

    #mobile-bars {
        color: #fff;
        display: initial;
        font-size: 26px;
    }

    .navigation-panel-middle {
        pointer-events: auto !important;
    }

    .top-panel-left {
        display: none;
    }

    .top-panel-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .form-control-half-font-size {
        font-size: 0.6em !important;
    }

    /*.nav-input-group .form-control {*/
    /*    width: 8.5rem;*/
    /*}*/

    .slider-panel-left button.slider-button {
        width: 10em;
        margin-left: 0;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }

    .slider-panel-left .slider-heading, .slider-panel-left .slider-content {
        padding: 10px 0;
    }

    .slider-panel-left {
        width: 80%;
        margin-left: 0;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 16px;
    }

    .slider-panel .left-arrow, .slider-panel .right-arrow {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .mobile-hide {
        display: none;
    }
}

/* modal */

.custom-modal {
    z-index: 1082;
    background-color: #00000085 !important;
}

.custom-modal .modal-dialog {
    position: relative;
    margin: auto;
    top: 50% !important;
    transform: translateY(-80%) !important;
    color: #636363;
    width: 370px;
}

.custom-modal .modal-dialog .modal-content {
    padding: 20px;
    border-radius: 5px;
    border: none;
}

.custom-modal .modal-dialog .modal-content .modal-body {
    color: #000;
}

.custom-modal .modal-dialog .modal-content .modal-body input[type=submit] {
    font-size: 18px;
}

.custom-modal .modal-dialog .modal-header {
    border-bottom: none;
    position: relative;
    justify-content: center;
}

.custom-modal .modal-dialog h4 {
    text-align: center;
    font-size: 26px;
}

.custom-modal .modal-dialog .form-group {
    position: relative;
}

.custom-modal .modal-dialog i {
    position: absolute;
    left: 13px;
    top: 11px;
    font-size: 18px;
}

.custom-modal .modal-dialog .form-control {
    padding-left: 40px;
}

.custom-modal .modal-dialog .form-control:focus {
    border-color: #932e3e;
}

.custom-modal .modal-dialog .form-control, .custom-modal .modal-dialog .btn {
    min-height: 40px;
    border-radius: 3px;
    font-size: 14px;
}

.custom-modal .modal-dialog .hint-text {
    text-align: center;
    padding-top: 10px;
}

.custom-modal .modal-dialog .close {
    position: absolute;
    top: -5px;
    right: -5px;
}

.custom-modal .modal-dialog .btn {
    background: #932e3e;
    border: none;
    line-height: normal;
}

.custom-modal .modal-dialog .btn:hover, .custom-modal .modal-dialog .btn:focus {
    background: #360109;
}

.custom-modal .modal-dialog .modal-footer {
    background: #ecf0f1;
    border-color: #dee4e7;
    text-align: center;
    margin: 0 -20px -20px;
    border-radius: 5px;
    font-size: 13px;
    justify-content: center;
}

.custom-modal .modal-dialog .modal-footer a {
    color: #999;
}

@media (max-width: 768px) {
    .custom-modal .modal-dialog {
        width: 350px;
        transform: translateY(-50%) !important;
    }
}

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}

/* end of modal */

/* panel */

.panel {
    margin-bottom: 20px;
    /*background-color: #1f1f1f;*/
    /*border: 1px solid transparent;*/
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
    color: #888;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
    background-color: #1f1f1f;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body h1, .panel-body h2, .panel-body h3, .panel-body h4, .panel-body h5, .panel-body h6 {
    color: #fff;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel-heading>.dropdown .dropdown-toggle {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.panel-title>a, .panel-title>small, .panel-title>.small, .panel-title>small>a, .panel-title>.small>a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel-outline-border {
    border: 1px solid #932e3e;
}

.panel-border-before:before {
    content: '';
    width: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    height: 38px;
    box-sizing: border-box;
    border: 4px solid transparent;
    border-top-color: #932e3e;
}

.panel-border-after:after {
    content: '';
    width: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 38px;
    box-sizing: border-box;
    border: 4px solid transparent;
    border-bottom-color: #932e3e;
    /*margin-bottom: 20px;*/
}

@media only screen and (max-width: 768px) {
    .panel-border-after:after {
        margin-bottom: 0 !important;
        /*bottom: 20px;*/
    }
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:768px) {
    .container {
        width: 750px
    }
}

@media (min-width:992px) {
    .container {
        width: 970px
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px
    }
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.row {
    margin-right: -15px;
    margin-left: -15px
}

.row-no-gutters {
    margin-right: 0;
    margin-left: 0
}

.row-no-gutters [class*="col-"] {
    padding-right: 0;
    padding-left: 0
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left
}

.col-xs-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666667%
}

.col-xs-pull-10 {
    right: 83.33333333%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666667%
}

.col-xs-pull-7 {
    right: 58.33333333%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666667%
}

.col-xs-pull-4 {
    right: 33.33333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.66666667%
}

.col-xs-pull-1 {
    right: 8.33333333%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-push-11 {
    left: 91.66666667%
}

.col-xs-push-10 {
    left: 83.33333333%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-8 {
    left: 66.66666667%
}

.col-xs-push-7 {
    left: 58.33333333%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-5 {
    left: 41.66666667%
}

.col-xs-push-4 {
    left: 33.33333333%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-2 {
    left: 16.66666667%
}

.col-xs-push-1 {
    left: 8.33333333%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-offset-12 {
    margin-left: 100%
}

.col-xs-offset-11 {
    margin-left: 91.66666667%
}

.col-xs-offset-10 {
    margin-left: 83.33333333%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-8 {
    margin-left: 66.66666667%
}

.col-xs-offset-7 {
    margin-left: 58.33333333%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-5 {
    margin-left: 41.66666667%
}

.col-xs-offset-4 {
    margin-left: 33.33333333%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-2 {
    margin-left: 16.66666667%
}

.col-xs-offset-1 {
    margin-left: 8.33333333%
}

.col-xs-offset-0 {
    margin-left: 0
}

@media (min-width:576px) {
    /* custom fix between 576px and 768px */
    .col-sm-4 {
        max-width: none;
    }
}

@media (min-width:768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left
    }
    .col-sm-12 {
        width: 100%
    }
    .col-sm-11 {
        width: 91.66666667%
    }
    .col-sm-10 {
        width: 83.33333333%
    }
    .col-sm-9 {
        width: 75%
    }
    .col-sm-8 {
        width: 66.66666667%
    }
    .col-sm-7 {
        width: 58.33333333%
    }
    .col-sm-6 {
        width: 50%
    }
    .col-sm-5 {
        width: 41.66666667%
    }
    .col-sm-4 {
        width: 33.33333333%
    }
    .col-sm-3 {
        width: 25%
    }
    .col-sm-2 {
        width: 16.66666667%
    }
    .col-sm-1 {
        width: 8.33333333%
    }
    .col-sm-pull-12 {
        right: 100%
    }
    .col-sm-pull-11 {
        right: 91.66666667%
    }
    .col-sm-pull-10 {
        right: 83.33333333%
    }
    .col-sm-pull-9 {
        right: 75%
    }
    .col-sm-pull-8 {
        right: 66.66666667%
    }
    .col-sm-pull-7 {
        right: 58.33333333%
    }
    .col-sm-pull-6 {
        right: 50%
    }
    .col-sm-pull-5 {
        right: 41.66666667%
    }
    .col-sm-pull-4 {
        right: 33.33333333%
    }
    .col-sm-pull-3 {
        right: 25%
    }
    .col-sm-pull-2 {
        right: 16.66666667%
    }
    .col-sm-pull-1 {
        right: 8.33333333%
    }
    .col-sm-pull-0 {
        right: auto
    }
    .col-sm-push-12 {
        left: 100%
    }
    .col-sm-push-11 {
        left: 91.66666667%
    }
    .col-sm-push-10 {
        left: 83.33333333%
    }
    .col-sm-push-9 {
        left: 75%
    }
    .col-sm-push-8 {
        left: 66.66666667%
    }
    .col-sm-push-7 {
        left: 58.33333333%
    }
    .col-sm-push-6 {
        left: 50%
    }
    .col-sm-push-5 {
        left: 41.66666667%
    }
    .col-sm-push-4 {
        left: 33.33333333%
    }
    .col-sm-push-3 {
        left: 25%
    }
    .col-sm-push-2 {
        left: 16.66666667%
    }
    .col-sm-push-1 {
        left: 8.33333333%
    }
    .col-sm-push-0 {
        left: auto
    }
    .col-sm-offset-12 {
        margin-left: 100%
    }
    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }
    .col-sm-offset-9 {
        margin-left: 75%
    }
    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }
    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }
    .col-sm-offset-6 {
        margin-left: 50%
    }
    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }
    .col-sm-offset-3 {
        margin-left: 25%
    }
    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }
    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }
    .col-sm-offset-0 {
        margin-left: 0
    }
}

@media (min-width:992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left
    }
    .col-md-12 {
        width: 100%
    }
    .col-md-11 {
        width: 91.66666667%
    }
    .col-md-10 {
        width: 83.33333333%
    }
    .col-md-9 {
        width: 75%
    }
    .col-md-8 {
        width: 66.66666667%
    }
    .col-md-7 {
        width: 58.33333333%
    }
    .col-md-6 {
        width: 50%
    }
    .col-md-5 {
        width: 41.66666667%
    }
    .col-md-4 {
        width: 33.33333333%
    }
    .col-md-3 {
        width: 25%
    }
    .col-md-2 {
        width: 16.66666667%
    }
    .col-md-1 {
        width: 8.33333333%
    }
    .col-md-pull-12 {
        right: 100%
    }
    .col-md-pull-11 {
        right: 91.66666667%
    }
    .col-md-pull-10 {
        right: 83.33333333%
    }
    .col-md-pull-9 {
        right: 75%
    }
    .col-md-pull-8 {
        right: 66.66666667%
    }
    .col-md-pull-7 {
        right: 58.33333333%
    }
    .col-md-pull-6 {
        right: 50%
    }
    .col-md-pull-5 {
        right: 41.66666667%
    }
    .col-md-pull-4 {
        right: 33.33333333%
    }
    .col-md-pull-3 {
        right: 25%
    }
    .col-md-pull-2 {
        right: 16.66666667%
    }
    .col-md-pull-1 {
        right: 8.33333333%
    }
    .col-md-pull-0 {
        right: auto
    }
    .col-md-push-12 {
        left: 100%
    }
    .col-md-push-11 {
        left: 91.66666667%
    }
    .col-md-push-10 {
        left: 83.33333333%
    }
    .col-md-push-9 {
        left: 75%
    }
    .col-md-push-8 {
        left: 66.66666667%
    }
    .col-md-push-7 {
        left: 58.33333333%
    }
    .col-md-push-6 {
        left: 50%
    }
    .col-md-push-5 {
        left: 41.66666667%
    }
    .col-md-push-4 {
        left: 33.33333333%
    }
    .col-md-push-3 {
        left: 25%
    }
    .col-md-push-2 {
        left: 16.66666667%
    }
    .col-md-push-1 {
        left: 8.33333333%
    }
    .col-md-push-0 {
        left: auto
    }
    .col-md-offset-12 {
        margin-left: 100%
    }
    .col-md-offset-11 {
        margin-left: 91.66666667%
    }
    .col-md-offset-10 {
        margin-left: 83.33333333%
    }
    .col-md-offset-9 {
        margin-left: 75%
    }
    .col-md-offset-8 {
        margin-left: 66.66666667%
    }
    .col-md-offset-7 {
        margin-left: 58.33333333%
    }
    .col-md-offset-6 {
        margin-left: 50%
    }
    .col-md-offset-5 {
        margin-left: 41.66666667%
    }
    .col-md-offset-4 {
        margin-left: 33.33333333%
    }
    .col-md-offset-3 {
        margin-left: 25%
    }
    .col-md-offset-2 {
        margin-left: 16.66666667%
    }
    .col-md-offset-1 {
        margin-left: 8.33333333%
    }
    .col-md-offset-0 {
        margin-left: 0
    }
}

@media (min-width:1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left
    }
    .col-lg-12 {
        width: 100%
    }
    .col-lg-11 {
        width: 91.66666667%
    }
    .col-lg-10 {
        width: 83.33333333%
    }
    .col-lg-9 {
        width: 75%
    }
    .col-lg-8 {
        width: 66.66666667%
    }
    .col-lg-7 {
        width: 58.33333333%
    }
    .col-lg-6 {
        width: 50%
    }
    .col-lg-5 {
        width: 41.66666667%
    }
    .col-lg-4 {
        width: 33.33333333%
    }
    .col-lg-3 {
        width: 25%
    }
    .col-lg-2 {
        width: 16.66666667%
    }
    .col-lg-1 {
        width: 8.33333333%
    }
    .col-lg-pull-12 {
        right: 100%
    }
    .col-lg-pull-11 {
        right: 91.66666667%
    }
    .col-lg-pull-10 {
        right: 83.33333333%
    }
    .col-lg-pull-9 {
        right: 75%
    }
    .col-lg-pull-8 {
        right: 66.66666667%
    }
    .col-lg-pull-7 {
        right: 58.33333333%
    }
    .col-lg-pull-6 {
        right: 50%
    }
    .col-lg-pull-5 {
        right: 41.66666667%
    }
    .col-lg-pull-4 {
        right: 33.33333333%
    }
    .col-lg-pull-3 {
        right: 25%
    }
    .col-lg-pull-2 {
        right: 16.66666667%
    }
    .col-lg-pull-1 {
        right: 8.33333333%
    }
    .col-lg-pull-0 {
        right: auto
    }
    .col-lg-push-12 {
        left: 100%
    }
    .col-lg-push-11 {
        left: 91.66666667%
    }
    .col-lg-push-10 {
        left: 83.33333333%
    }
    .col-lg-push-9 {
        left: 75%
    }
    .col-lg-push-8 {
        left: 66.66666667%
    }
    .col-lg-push-7 {
        left: 58.33333333%
    }
    .col-lg-push-6 {
        left: 50%
    }
    .col-lg-push-5 {
        left: 41.66666667%
    }
    .col-lg-push-4 {
        left: 33.33333333%
    }
    .col-lg-push-3 {
        left: 25%
    }
    .col-lg-push-2 {
        left: 16.66666667%
    }
    .col-lg-push-1 {
        left: 8.33333333%
    }
    .col-lg-push-0 {
        left: auto
    }
    .col-lg-offset-12 {
        margin-left: 100%
    }
    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }
    .col-lg-offset-9 {
        margin-left: 75%
    }
    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }
    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }
    .col-lg-offset-6 {
        margin-left: 50%
    }
    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }
    .col-lg-offset-3 {
        margin-left: 25%
    }
    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }
    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }
    .col-lg-offset-0 {
        margin-left: 0
    }
}

.responsive-padding {
    /*padding-left: 0 !important;*/
}

@media only screen and (max-width: 768px) {
    .responsive-padding {
        padding: 0 !important;
    }
}

/* end of panel */

/* google login */

.pm-awesome-divider-div {
    padding: 0 32px;
}

.pm-awesome-divider {
    height: 1px;
    width: 100%;
    border-top: solid thin #f0f0f0;
    margin: 24px 0;
    text-align: center;
}

.pm-awesome-divider:after {
    content: attr(data-label);
    display: inline-block;
    background: #fff;
    padding: 0 32px;
    position: relative;
    top: -10px;
    font-size: 12px;
    color: #9b9b9b;
}

.google-sign-in {
    text-decoration: none;
    padding: 0;
    border-radius: 2px;
    position: relative;
    border: none;
    margin: 0 auto 16px auto;
    width: 100%;
    display: flex;
}

.google-sign-in:hover {
    background: #360109;
    color: #fff;
    text-decoration: none;
}

.pm-btn-info {
    color: #fff;
    background-color: #4285f4;
    height: 40px;
    width: 100%;
}

.pm-btn {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
}

.google-logo {
    display: inline-block;
    background-color: #ffffff;
    height: 38px;
    width: 38px;
    margin: 1px 1px;
    border-radius: 1px;
    padding: 8px;
}

.google-logo-img {
    width: 16px;
    aspect-ratio: auto 16 / 16;
    height: 16px;
}

.google-text {
    line-height: 2.8;
    display: inline-block;
    width: 100%;
    height: 40px;
    top: 12px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.21875px;
}

/* end of  google login */

/* scrolltop */

@font-face {
    font-family: 'unicons';
    src: url('../webfonts/unicons.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@-webkit-keyframes border-transform {
    0%,100% { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
    14% { border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%; }
    28% { border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%; }
    42% { border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%; }
    56% { border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%; }
    70% { border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%; }
    84% { border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%; }
}

.progress-wrap {
    position: fixed;
    right: 40px;
    bottom: 40px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 50px;
    font-size: 26px;
    color: #ecedf3;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    font-family: 'unicons';
    content: '\e84b';
    text-align: center;
    line-height: 50px;
    font-size: 26px;
    opacity: 0;
    background: #932e3e;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #ecedf3;
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* end of scrolltop */

/* bouncing loader */

@keyframes bouncing-loader {
    to {
        opacity: 0.1;
        transform: translate3d(0, -1rem, 0);
    }
}

.bouncing-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.bouncing-loader > div {
    width: 1.5rem;
    height: 1.5rem;
    margin: 3rem 0.5rem;
    background: #932e3e;
    border-radius: 50%;
    animation: bouncing-loader 0.6s infinite alternate;
}

.bouncing-loader > div:nth-child(2) {
    animation-delay: 0.2s;
}

.bouncing-loader > div:nth-child(3) {
    animation-delay: 0.4s;
}

/* end of bouncing loader */