/*--------------------------------------------------------------
# Rc Design reset/Common Styles
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# variation color theme
--------------------------------------------------------------*/
/*--vars for root elements--*/


/* Set the color by updating the --color variable: */
@font-face {
    font-family: fontawesome;
    src: url("../fonts/fontawesome-webfont.ttf");
}



.color--primary {
  --color: var(--primary);
}

.color--secondary {
  --color: var(--secondary);
}

html{
    /*scroll-behavior: smooth;*/
}
body {
    color: var(--text-color);
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

select {
    display: block;
}

figure {
    margin: 0;
}

a {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    outline: 0;
}

a {
    color:var(--primary-color);
}
a:focus{
    outline: none;
}
a:hover {
    color: var(--secondary-color);
}

iframe {
    border: 0;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
    text-decoration: none;
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    line-height: 1.2em !important;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 600;
    color: var(--text-color);
}

h1 {
    font-size: 35px;
}

h2{
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4{
    font-size: 17px;
}

h5{
    font-size: 15px;
}

h6 {
    font-size: 13px;
}

td,
th {
    border-radius: 0px;
}

b,
sup,
sub,
u,
del {
    color: var(--primary-color);
}
.clear::before,
.clear::after {
    content: " ";
    display: table;
}

.clear::after {
    clear: both;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.text-italic {
    font-style: italic;
}
.text-white {
    color: var(--color-white);
}

.text-black {
    color: var(--text-dark);
}
.text-bold {
   font-weight: bold;
}

.transition {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.no-padding{
    padding: 0;
}
/*--------------------------------------------------------------
# page locader
--------------------------------------------------------------*/
#rc-preloader {
    overflow: hidden;
    background-color:var(--color-white);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
}

.rc-loader {
    -webkit-animation: 2000ms linear 0s normal none infinite running rc-loader;
    animation: 2000ms linear 0s normal none infinite running rc-loader;
    background: transparent none repeat scroll 0 0;
    border-color: var(--border-color) var(--border-color) var(--primary-color);
    border-radius: 50%;
    border-style: solid;
    border-width: 2px;
    height: 40px;
    left: calc(50% - 20px);
    position: relative;
    top: calc(50% - 20px);
    width: 40px;
    z-index: 9;
}

@-webkit-keyframes rc-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rc-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/*--------------------------------------------------------------
# page wow animate
--------------------------------------------------------------*/
.wow {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
    -webkit-transition: 0.4s 0.2s ease-in-out;
    transition: 0.4s 0.2s ease-in-out;
}
.wow.animated {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(0.99);
        transform: scale(0.99);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.99);
        transform: scale(0.99);
    }
}
@keyframes scale {
    0% {
        -webkit-transform: scale(0.99);
        transform: scale(0.99);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.99);
        transform: scale(0.99);
    }
}
@-webkit-keyframes new-fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes new-fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.new-fadeInUp {
    -webkit-animation-name: new-fadeInUp;
    animation-name: new-fadeInUp;
}
@-webkit-keyframes hoverIn {
    0% {
        width: 50px;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 50px;
        right: 0;
        left: auto;
    }
}
@keyframes hoverIn {
    0% {
        width: 50px;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 50px;
        right: 0;
        left: auto;
    }
}
@-webkit-keyframes hoverOut {
    0% {
        width: 50px;
        right: 0;
        left: auto;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 50px;
        right: auto;
        left: 0;
    }
}
@keyframes hoverOut {
    0% {
        width: 50px;
        right: 0;
        left: auto;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 50px;
        right: auto;
        left: 0;
    }
}
@-webkit-keyframes beat {
    0% {
        bottom: 60px;
    }
    50% {
        bottom: 70px;
    }
    100% {
        bottom: 60px;
    }
}
@keyframes beat {
    0% {
        bottom: 60px;
    }
    50% {
        bottom: 70px;
    }
    100% {
        bottom: 60px;
    }
}
/*--------------------------------------------------------------
# buttons
--------------------------------------------------------------*/
.success-btn,
.secondary-btn,
.primary-btn {
    padding:10px 30px;
    border: none;
    border-radius: 6px;
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}
.success-btn:focus,
.secondary-btn:focus,
.primary-btn:focus {
    outline: none;
}
button:focus{
    outline: none;
}

.primary-btn {
    background: var(--primary-color);
    color: var(--color-white);
}
.primary-btn:hover{
    background-color: var(--primary-hover);
}

.primary-btn:hover {
    color: var(--color-white);
}

.secondary-btn{
    background: var(--secondary-color);
    color: var(--color-white);
}
.secondary-btn:hover{
    background: var(--secondary-hover);
    color: var(--color-white);
}
.success-btn{
    background: var(--success-color);
    color: var(--color-white);
}
.success-btn:hover{
    background-color: var(--success-hover);
    color: var(--color-white);
}
.dark-btn{
    background-color: var(--dark-color);
    color: var(--color-white);
    font-size: 14px;
    padding:10px 30px;
    border: none;
    border-radius: 6px;
    display: inline-block;
    font-weight: 500;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}
.dark-btn:hover{
    background-color:var(--text-dark);
    color: var(--color-white);
}
.btn-primary {
    background: var(--primary-color);
    color: var(--color-white);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    color: var(--color-white);
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}
.btn-link{
    color: var(--text-color);
}
.btn-link:hover{
    color: var(--text-dark);
}

/*--------------------------------------------------------------
# forms
--------------------------------------------------------------*/
.form-control {
    border-radius: 6px;
    font-size: 14px;
    height: 48px;
    border: 1px solid  var(--border-color);
    background-color: var(--form-bg);
}
textarea.form-control {
    height: auto;
}
label{
    font-weight: 500;
    color: var(--text-color);
}
::-moz-selection {
    background-color: var(--primary-color);
    color: var(--color-white);
}

::selection {
    background-color: var(--primary-color);
    color: var(--color-white);
}
::-webkit-input-placeholder {
    font-weight: 300;
    color: var(--text-color);
}

:-moz-placeholder {
    opacity: 1;
    font-weight: 300;
    color: var(--text-color);
}

::-moz-placeholder {
    opacity: 1;
    font-weight: 300;
    color: var(--text-color);
}

:-ms-input-placeholder {
    font-weight: 300;
    color: var(--text-color);
}



/*--------------------------------------------------------------
# select boxes style nice select styles
--------------------------------------------------------------*/
.default-select {
    height: 40px;
}

.default-select .nice-select {
    border: none;
    border-radius: 0px;
    height: 40px;
    background: var(--color-white);
    padding-left: 20px;
    padding-right: 40px;
    width: 100%;
}
.default-select .nice-select.open .list{
    max-height: 250px;
    overflow-y: scroll;
}
.default-select .nice-select .list {
    margin-top: 0;
    border: none;
    border-radius: 0px;
    box-shadow: none;
    width: 100%;
    padding: 10px 0 10px 0px;
}

.default-select .nice-select .list .option {
    font-weight: 300;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 28px;
    min-height: 28px;
    font-size: 12px;
    padding-left: 20px;
}

.default-select .nice-select .list .option.selected {
    color: var(--primary-color);
    background: transparent;
}

.default-select .nice-select .list .option:hover {
    color: var(--primary-color);
    background: transparent;
}

.default-select .current {
    margin-right: 50px;
    font-weight: 300;
}

.default-select .nice-select::after {
    right: 20px;
}

@media (max-width: 991px) {
    .left-align-p p {
        margin-top: 20px;
    }
}

.form-select {
    height: 40px;
    width: 100%;
}

.form-select .nice-select {
    border: none;
    border-radius: 0px;
    height: 40px;
    background: var(--color-white) !important;
    padding-left: 45px;
    padding-right: 40px;
    width: 100%;
}

.form-select .nice-select .list {
    margin-top: 0;
    border: none;
    border-radius: 0px;
    box-shadow: none;
    width: 100%;
    padding: 10px 0 10px 0px;
}

.form-select .nice-select .list .option {
    font-weight: 300;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 28px;
    min-height: 28px;
    font-size: 12px;
    padding-left: 45px;
}

.form-select .nice-select .list .option.selected {
    color: var(--primary-color);
    background: transparent;
}

.form-select .nice-select .list .option:hover {
    color: var(--primary-color);
    background: transparent;
}

.form-select .current {
    margin-right: 50px;
    font-weight: 300;
}

.form-select .nice-select::after {
    right: 20px;
}
/*--------------------------------------------------------------
# rc custom table styles
--------------------------------------------------------------*/
.custom-rc-table {
    font-size: 12px;
}
.custom-rc-table tbody {
    box-shadow: -3px 3px 9px #003C7114;
    background-color: var(--color-white);
    border-radius: 7px;
    /*display: table;*/
}
.table.custom-rc-table thead th {
    vertical-align: bottom;
    border:none;
    font-weight: 400;
    color: var(--text-color-light);
}
.table.custom-rc-table tbody tr td{
    vertical-align: middle;
    border-top: 1px solid var(--border-color);
}
.table.custom-rc-table tbody tr:first-child td{
    border: none;
}
/*--------------------------------------------------------------
# headers
--------------------------------------------------------------*/
.float-wrapper {
    float: right;
}
.float-wrapper.site-header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: auto;
    align-items: center;
}
.header-login-wrapper ul {
    content: "";
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    position: relative;
}
/*.header-right-content-wrapper{
    margin-left: auto;
}*/
.header-right-content-wrapper {
    /* margin-left: auto; */
    /*float: right;*/
    display: flex;
    width: 100%;
    flex-direction: column;
}
.header-social-left{
    /*margin-left: auto;*/
    text-align: right;
    margin: 12px 0 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-social-left ul li {
    display: inline-block;
    margin-left: 7px;
}
.header-social-left a {
    /*margin-right: 10px;*/
}
.header-social-left a svg{
    fill: var(--primary-color);
    padding: 2px;
    border-radius: 3px;
    height: 20px;
    width: 20px;
}
.header-social-left a:hover svg{
    opacity: 0.7;
}
.header-social-left a svg.icon-facebook{
   fill: var(--color-white);
   background-color: #1877f2;
}
.header-social-left a svg.icon-youtube{
    fill:#ff0000;
}
.header-social-left a svg.icon-twitter{
    fill:#00aced;
}
.header-social-left a svg.icon-instagram{
    fill:var(--color-white);
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.header-social-left img{
    height: 20px;
    width: 20px;
}

.main-menu {
    padding-bottom: 4px;
    padding-top: 4px;
}

#header {
    position: relative;
 /*   left: 0;
    top: 0;
    right: 0;*/
    transition: all 0.3s ease;
    z-index: 997;
    border-bottom: 1px solid  var(--border-light);
    transition: all 0.5s;
    background: var(--background-light);
}

#header.header-scrolled {
    position: fixed;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    right: 0;
    /*background-color: rgba(4, 9, 30, 0.9)*/
}

#header.header-scrolled .main-menu {
    border-color: transparent;
}

#logo{
    float: left;
}

@media (max-width: 673px) {
    #logo {
        margin-left: 20px;
    }
}

#header #logo h1 {
    font-size: 34px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    padding-left: 10px;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
}

#header #logo img {
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    #header #logo h1 {
        font-size: 28px;
    }
    #header #logo,
    #header #logo img {
        height:56px;
        width: 98px;
    }
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: var(--background-light);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color:var(--text-color);
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}
#masthead {
    position: relative;
    width: 100%;
    z-index: 999;

    border-bottom: 1px solid var(--border-light);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#masthead .wrapper {
    padding: 0 30px;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    /* display: -webkit-flex; */
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    flex: 0 0 100%;
    justify-content: space-between;
}

.site-header{
    background-color: var(--background-light);
}
.menu-sticky #masthead.nav-shrink{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}
#masthead .wrapper{
    padding: 0 15px;
}
.site-branding {
    float: left;
    padding: 15px 0;
    display: flex;
    align-items: center;
    min-height: 100px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.site-title {
    font-size: 32px;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.site-title a {
    color: var(--text-color);
}
.site-title a:hover,
.site-title a:focus {
    color: var(--primary-color);
}
.site-description {
    margin: 0;
    line-height: 1.5;
    color: var(--color-white);
    text-transform: uppercase;
}
.site-logo img {
    max-height: 65px;
    width: auto;
    margin-right: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.main-navigation li.logged-user img{
    height: 40px;
    width: 40px;
    border-radius: 50px;
    object-fit: cover;
    margin-right: 4px;
}
/*.header-login-wrapper li img{
    height: 40px;
    width: 40px;
    border-radius: 50px;
    object-fit: cover;
    margin-right: 4px;
}*/
.main-navigation {
    display: block;
    position: relative;
    float: right;
}
.main-navigation ul#primary-menu li.current-menu-item > a,
.main-navigation ul#primary-menu li:hover > a,
.main-navigation ul#primary-menu li:focus > a {
    color: var(--primary-color);
}
/*.main-navigation ul#primary-menu li.current-menu-item > a:after{

}*/
.main-navigation ul#primary-menu li:hover > svg,
.main-navigation ul#primary-menu li:focus > svg,
.main-navigation li.menu-item-has-children:hover > a > svg,
.main-navigation li.menu-item-has-children > a:hover > svg,
.main-navigation li.menu-item-has-children > a:focus > svg,
.main-navigation ul#primary-menu > li.current-menu-item > a > svg {
    fill: var(--primary-color);
}
.main-navigation ul ul {
    background-color: var(--color-white);
    text-align: left;
    padding: 0;
}
.main-navigation ul.sub-menu li a {
    padding: 8px 15px;
    color: #333;
    border-bottom: 1px solid var(--border-color);
}
.main-navigation ul.sub-menu a:after {
    float: right;
}
.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation li {
    position: relative;
}
.main-navigation a:after, .main-navigation a:before {
    transition: all .3s;
}
.main-navigation li a:after {
    background: var(--primary-color);
}

.main-navigation li a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    height: 2px;
}
.main-navigation li a:hover:after {
    width: 50%;
}
.main-navigation li .sub-menu a:hover:after{
    width: 100%;
}
.main-navigation li .dropdown-toggle::after{
    content: none;
}

.main-navigation ul.nav-menu > li > a {
    padding: 10px 18px 10px;
    color: var(--text-color);
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation ul.nav-menu > li > a:hover,
.main-navigation ul.nav-menu > li > a:focus {
    color: var(--primary-color);
}
.main-navigation ul.nav-menu {
    /*margin-right: -25px;*/
}
.main-navigation a {
    display: block;
    text-decoration: none;
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}
.main-navigation ul ul {
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}
.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}
.main-navigation ul ul a {
    width: 225px;
}
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
    color: var(--text-color);
}

.main-navigation svg.icon-close {
    display: none;
}
svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}
svg.icon-close {
    width: 15px;
    height: 15px;
    fill: #333;
}
.main-navigation svg.icon-down {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    fill: #333;
}
.main-navigation .sub-menu svg {
    width: 12px;
    height: 12px;
    fill: #333;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -moz-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    -o-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}
.menu-toggle {
    border-radius: 0;
    font-size: 16px;
    margin: auto;
    outline: none;
    display: block;
    height: 100px;
    position: relative;
    background-color: transparent;
    min-width: 64px;
    border: none;
    margin-right: -15px;
}
.menu-label {
    float: right;
    color: var(--text-color);
    padding: 7px 0 0 10px;
    display: none;
}
.menu-open .menu-label {
    padding-top: 2px;
}
.menu-open .menu-toggle {
    padding-top: 10px;
}
svg.icon-menu {
    fill: #333;
    width: 30px;
    height: 30px;
    vertical-align: baseline;
}
.menu-open svg.icon-menu {
    display: none;
}
button.dropdown-toggle {
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    border: none;
    width: 45px;
    height: 55px;
    line-height: 62px;
    outline: none;
}
.main-navigation .dropdown-toggle.active > svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
.menu-overlay {
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.menu-overlay.active {
    background-color: var(--text-dark);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 3;
}
.overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}
#masthead .custom-button {
    padding: 5px 10px;
    display: inline-block;
    text-align: center;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    color: var(--color-white);
    margin-left: 5px;
    text-decoration: none;
    font-weight: 500;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.main-navigation ul#primary-menu li:hover > .custom-button,
.main-navigation ul#primary-menu li:focus > .custom-button{
    color: var(--color-white);
}
#masthead .custom-button:hover{
    background-color: var(--primary-hover);
}

@media screen and (min-width: 1024px) {
    .classic-menu .main-navigation ul.nav-menu {
        display: block !important;
        height: auto !important;
    }
    .main-navigation ul li:hover > ul,
    .main-navigation ul li.focus > ul {
        left: auto;
        right: 0;
    }
    .main-navigation ul ul li:hover > ul,
    .main-navigation ul ul li.focus > ul {
        left: auto;
        right: 100%;
    }
    .main-navigation ul ul {
        box-shadow: -3px 3px 9px #003c7114
    }
    .main-navigation ul ul ul {
        top: 0;
    }
    .main-navigation .menu-item-has-children > a:after {
        float: none;
    }
    .main-navigation ul.sub-menu li:hover > a,
    .main-navigation ul.sub-menu li:focus > a {
        color: var(--primary-color);
    }
    .main-navigation ul.sub-menu > li:last-child > a {
        border-bottom: none;
    }

    #masthead .main-navigation ul ul li.menu-item-has-children > a {
        padding-right: 35px;
    }
    #masthead .main-navigation ul ul li a svg {
        display: inline-block;
        top: 17px;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .main-navigation ul#primary-menu ul li.current-menu-item > a,
    .main-navigation ul#primary-menu ul li:hover > a,
    .main-navigation ul#primary-menu ul li:focus > a {
        color: var(--primary-color);
    }
    .main-navigation ul ul li.menu-item-has-children:hover > a > svg,
    .main-navigation ul ul li.menu-item-has-children > a:hover > svg {
        fill: #333;
    }

    button.dropdown-toggle {
        display: none;
    }
    .menu-toggle{
        display: none;
    }
    .main-navigation ul {
        display: block;
    }
    .main-navigation li {
        display: inline-block;
    }
    .main-navigation .left-menu {
        padding-left: 50px;
    }
    .main-navigation ul.nav-menu > li.left-menu > a,
    .main-navigation ul.nav-menu > li.right-menu > a {
        padding-left: 5px;
        padding-right: 5px;
    }
    .main-navigation li.left-menu + li.right-menu:before {
        content: "/";
        position: absolute;
        top: 50%;
        margin-left: -6px;
        color: var(--color-white);
        margin-top: -1px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .menu-sticky #masthead.nav-shrink {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 1250px;
        margin-left: auto;
        margin-right: auto;
    }
    .menu-sticky #masthead.nav-shrink {
        max-width: 100%;
        border:none;
    }
    .menu-sticky.frame-layout #masthead.nav-shrink {
        max-width: 100%;
        width: 95.5%;
    }
    .menu-sticky #masthead.nav-shrink .site-logo img {
        max-height: 50px;
    }
    .menu-sticky #masthead ul#primary-menu > li > a {
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .menu-sticky #masthead.nav-shrink ul#primary-menu > li > a {
        /*padding-top: 10px;
        padding-bottom: 10px;*/
        padding: 5px 15px 5px;
    }
    .menu-sticky #masthead.nav-shrink ul#primary-menu > li > a.custom-button{
        padding: 5px 10px;
    }
    .menu-sticky #masthead.nav-shrink ul#primary-menu > li.logged-user a{
        padding-right: 0;
    }
    .menu-sticky #masthead.nav-shrink .site-title {
        font-size: 22px;
    }
    .classic-menu.menu-sticky #masthead.nav-shrink .site-branding {
        min-height: 70px;
        /*padding: 9px 0;*/
    }
    .nav-shrink .header-social-left {
        margin: 9px 0 8px;
    }

}
@media screen and (min-width: 1024px) and (max-width: 1330px) {

}
@media screen and (min-width: 1200px) {
    .main-navigation ul.nav-menu > li > a {
        padding: 10px 18px 10px;
    }
    .main-navigation ul.nav-menu > li.logged-user a {
        padding-right: 0;
    }

}
@media screen and (min-width: 1280px) {

}
@media screen and (min-width: 1900px) {
    .classic-menu.menu-sticky #masthead.nav-shrink .site-branding {
        /*min-height: 80px;*/
    }
    .container {
        max-width: 1440px;
    }

}
@media screen and (max-width: 1279px) {

}
@media screen and (max-width: 1023px) {
    #masthead {
        margin-bottom: 0;
        position: relative;
        min-height: 80px;
    }
    .menu-toggle {
        height: 80px;
    }
    .site-branding {
        padding: 7px 0;
        min-height: 80px;
    }
    .site-title {
        font-size: 26px;
    }
    .main-navigation a {
        border-bottom: 1px solid var(--border-color);
    }
    .main-navigation ul ul a {
        width: 100%;
    }
    .main-navigation ul ul,
    .main-navigation ul ul ul {
        box-shadow: none;
        float: none;
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 0;
        display: none;
    }
    .main-navigation ul.sub-menu li {
        padding-right: 0;
    }
    .main-navigation .menu-item-has-children > a:before {
        content: "";
        float: right;
        position: relative;
        right: 25px;
        background-color: rgba(255, 255, 255, 0.3);
        width: 1px;
        height: 25px;
    }
    .main-navigation .menu-item-has-children > a:after {
        padding-top: 3px;
    }
    .main-navigation ul.nav-menu > li > a,
    .main-navigation ul.sub-menu li a {
        padding: 15px 15px 15px 25px;
    }
    .main-navigation ul.sub-menu li a {
        padding-left: 50px;
    }
    .main-navigation ul.sub-menu ul li a {
        padding-left: 75px;
    }
    .main-navigation ul.sub-menu ul ul li a {
        padding-left: 100px;
    }
    .main-navigation ul.sub-menu ul ul ul li a {
        padding-left: 125px;
    }
    .main-navigation .menu-item-has-children a svg {
        display: none;
    }
    .main-navigation ul.sub-menu li a {
        border-left: none;
    }
    .main-navigation ul.nav-menu {
        margin-right: 0;
        background-color: var(--color-white);
        margin-top: 25px;
        border-top: 1px solid var(--border-color);
    }
    .main-navigation {
        position: static;
    }
    .main-navigation a {
        color: var(--text-color);
    }
    .main-navigation svg.icon-down {
        fill: #333;
        margin-top: -5px;
    }
    .main-navigation ul.sub-menu {
        border: none;
    }
    .menu-open .menu-toggle .icon-close {
        display: block;
        margin: auto;
        width: 20px;
        height: 20px;
    }
    #masthead.site-header .main-navigation ul.nav-menu {
        margin-top: 0;
        position: absolute;
        max-width: 400px;
        top: 100%;
        left: auto;
        right: 0;
        width: 100%;
    }
    .main-navigation .sub-menu svg {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    li.custom-menu-item{
        padding: 12px 10px 5px;
    }
    #masthead .custom-button{
        display: block;
    }
}

@media screen and (max-width: 992px) {

}
@media screen and (max-width: 767px) {
    #masthead.site-header .main-navigation ul.nav-menu {
        max-width: 100%;
        /*max-width: 400px;*/
    }


}
@media screen and (max-width: 567px) {
    .site-branding {
        display: block;
        padding: 17px 0;
        max-width: 421px;
    }
    .site-logo img {
        max-height: 40px;
        margin-right: 10px;
    }
    .site-description {
        font-size: 14px;
    }
    .site-logo,
    #site-identity {
        display: inline-block;
        vertical-align: middle;
    }
    .site-title {
        font-size: 22px;
    }
     #masthead.site-header .main-navigation ul.nav-menu {
        max-width: 100%;
        /*max-width: 350px;*/
    }
}
@media screen and (max-width: 480px) {
    .site-branding {
        max-width: 300px;
    }
}








/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.section-intro{
    margin-bottom: 20px;
}
.section-title {
    text-align: center;
}
.section-title h2,
.section-title {
    display: block;
    font-size: 24px;
}

h2.section-title {
    margin-bottom: 10px;
}
.sec-sub-title{
    text-align: center;
    font-size: 12px;
}
.section-intro .br-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    display: block;
}

/*--------------------------------------------------------------
# login/Authentication
--------------------------------------------------------------*/
.auth_logo{
    margin-bottom: 15px;
}
.auth_logo img {
    width: 164px;
    height: 98px;
    object-fit: contain;
    object-position: center;
}
.login-area {
    overflow-x: hidden;
}
.auth-log {
    min-height: 100vh;
}
.auth-inner-wrapper {
    min-height: 100vh;
}
.auth-content-wrapper {
    height: 100%;
}

.login-featured {
    padding: 0;
    display: flex;
}
.hero-content {
    background: url(../coachone/img/banner-bg.png) no-repeat center center;
    background-size: cover;
    background-color: var(--background-light);
    width: 100%;
}
.auto-form-wrapper {
    position: relative;
    padding: 4% 0 20%;
    width: 70%;
    margin: 0 auto;
    /*height: 100vh;
    max-height: 100vh;*/
    min-height: 100vh;
}
.h-100 {
    height: 100% !important;
}

.login-header-wrapper {
    margin-bottom: 20px;
}
.login-header-wrapper h2{
    font-size: 24px;
    font-weight: 600;
    margin-bottom:0;
}
.login-sub-title{
    font-size: 14px;
    font-weight: 500;
    color:var(--secondary-color);
}
.login-sub-title a{
    color: var(--text-color);
}
.login-sub-title a:hover{
    color: var(--secondary-color);
}
.social-options{
    margin-bottom: 20px;
}
.social-options h3{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-color);
}

.option-links-wrapper {
    align-items: center;
    justify-content: center;
    display: flex;
}

.option-links-wrapper a{
    display: inline-block;
    width: calc((100% - 20px)/3);
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 14px;
    background: var(--text-dark);
    color: var(--color-white);
}

.option-links-wrapper a:hover{
    opacity: 0.6;
}
.option-links-wrapper .facebook{
    background: #4A7AFF;
}
.option-links-wrapper .apple{
    background: #202020;
}
.option-links-wrapper .google{
    background:#EB4132;
}
.option-links-wrapper a i:after{
    background: var(--color-white);
}
.option-text {
    color: var(--text-color);
}
.option-text:after {
    background-color: #E5E5E5;
}
.option-links-wrapper a:nth-child(2){
    margin:0 10px;
}

.option-links-wrapper a i{
    padding-right: 10px;
    margin-right: 7px;
    position: relative;
}
.option-links-wrapper a i:after{
    height: 100%;
    width: 1px;
    position: absolute;
    right:0;
    top: 0;
    display: block;
    opacity: 0.24;
    content: "";
}
.option-text {
    position: relative;
    font-weight: 600;
    font-size: 16px;
    margin: 20px 0;
}
.option-text:after {
    content: "";
    height: 1px;
    width: 93%;
    position: absolute;
    right: 0;
    top: 11px;
}
.auth-form{

}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: var(--primary-color);
    background-image: none;
}
.invalid-feedback,label.error{
    color: var(--primary-color);
}
.invalid-feedback {
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    /*position: absolute;*/
    /*top: 0;*/
    /*right: 25px;*/
    /*text-align: right;*/
}

/*.field-icon {
    position: absolute;
    right: 25px;
    bottom: 16px;
}*/
.field-icon {
    background: none;
    border: none;
    color: var(--text-color);
    position: absolute;
    right: .75em;
    top: 2.25em;
    z-index: 9;
    height: 48px;
    width: 48px;
    line-height: 47px;
    text-align: center;
    cursor: pointer;
}
.field-icon:active,
.field-icon:focus{
    outline: none;
    border:none;
}
.auth-form .primary-btn{
    width: 100%;
    height: 48px;
    font-size: 17px;
    font-weight: 500;
}
.info-block{
    text-align: center;
    font-weight: 500;
    margin: 10px 0 20px;
    color: var(--text-color);
}
.info-block a{
    color:var(--primary-color);
}
.info-block a:hover{
    color:var(--secondary-color);
}
.auth-nav-wrapper nav{
    margin: 5px 0 5px;
}
.auth-nav-wrapper ul{
    text-align: center;
}
.auth-nav-wrapper ul li{
    display: inline-block;
}
.auth-nav-wrapper ul li a{
    font-size: 13px;
    font-weight: 500;
    padding: 5px 3px;
    color: var(--text-color);
}
.auth-nav-wrapper ul li a:hover{
    color: var(--primary-color);
}
.copyright_wrapper{
    font-size: 12px;
    font-weight: 400;
}
.auth-copyright{
    text-align: center;
}
.auth-copyright a{
    color: var(--text-color);
}
.auth-copyright a:hover{
    color: var(--primary-color);
}
.auth-copyright p{
    margin-bottom: 0;
}
.helper-info{
    text-align: right;
    font-weight:500;
    font-size: 14px;
    margin-bottom: 20px;
}
.bottom-meta-auth {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

/*--------------------------------------------------------------
# recovery auth
--------------------------------------------------------------*/
.recovery-content-wrapper .login-sub-title {
    margin-top: 10px;
    color: var(--text-color);
    display: block;
}

.reset-container {
    width: 100%;
    display: table;
    table-layout: fixed;
    position: relative;
}

.reset-content {
    display: table-row;
    height: 100vh;
}
.reset-wrapper{
   display: table-cell;
   vertical-align: middle;
   padding-bottom: 10%;
   padding-top: 2%;

}

.recovery-content-wrapper {
    margin: 0 auto 5px auto;
    width: 400px;
    border-radius: 6px;
    padding: 30px 30px 15px;
    border: 1px solid var(--border-light);
}

.obj-thumb img {
    height: 125px;
    width: 125px;
    object-fit: contain;
    object-position: center;
}

/*--------------------------------------------------------------
# home page styles
--------------------------------------------------------------*/

.page-wrapper{
    position: relative;
}
.page-wrapper:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
/*background: url(../img/banner-bg.png) no-repeat center center;*/
}
.page-frames img{
    position: fixed;
    max-width: 80px;
    z-index: 2;
}

.page-frames img:nth-child(1){
    left: 0;
    top: 100px;
}
.page-frames img:nth-child(2){
    right: 0;
    top: 100px;
}
.page-frames img:nth-child(3) {
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    bottom: 0;
}
.page-frames img:nth-child(4){
    transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    bottom: 0;
    right: 0;
}



/*--------------------------------------------------------------
# Home hero-section and video Styles
--------------------------------------------------------------*/

.rc-hero-content-wrapper{
    position: relative;
}
.rc-hero-content-wrapper .overlay {
    background-color: var(--text-dark);
    opacity: 0.3;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.rc-featured-custom-header {
    width: 100%;
    height: 90vh;
   /* vertical-align: middle;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    background-color: var(--text-dark);
    overflow: hidden;
    z-index: 0;*/
    /*background-image: url(../coachone/img/banner.jpg);*/
}
.rc-featured-custom-header img {
    /*vertical-align: middle;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;*/
}

/*.homebanner-content{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}*/
/*#video-button {
    border: 2px solid transparent;
    width: 80px;
    height: 80px;
    line-height: 70px;
    text-align: center;
    border-radius: 70px;
    padding: 0;
    background-color: transparent;
    outline: none;
    display: inline-block;
    animation: shadow-pulse 1.5s infinite;
}
#video-button svg {
    fill: var(--color-white);

}
#video-button svg {
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
}
@keyframes shadow-pulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow: 0 0 0 35px rgba(255, 255, 255, 0);
  }
}*/

.container-player{
    background-color: var(--text-dark);
}
.home-video-bg {
    height: 100%;
    /*position: absolute;*/
   /* z-index: 0;
    right: 0;
    left: 0;*/
    /*padding:56.25% 0 0 0;*/
    position: relative;
}
.home-video-bg video {
   /* position: absolute;
    min-width: 100%;
    min-height: 100%;*/
}
.home-video-bg iframe{
    /*position:absolute;*/
   /* top:0;
    left:0;*/
    width:100%;
    height:100%;
    pointer-events: none;
}

.featured-content-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    max-width: 620px;
    padding: 25px 15px 25px 55px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}
.featured-content-wrapper .entry-title {
    color: var(--color-white);
    font-size: 42px;
    margin: 0 0 15px;
}
.featured-content-wrapper .entry-title a {
    color: var(--color-white);
}
.featured-content-wrapper .entry-content, .featured-content-wrapper .entry-content p {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 20px;
}
.featured-content-wrapper .read-more a {
    margin-left: 10px;
    margin-right: 10px;
    padding: 13px 30px;
}
.featured-content-wrapper .btn:first-child {
    background-color: #38aef8;
    color: var(--color-white);
    margin-left: 0;
}







/*--------------------------------------------------------------
# Home session slider and upcomming session Styles
--------------------------------------------------------------*/
.home-session-media,
.featured-session-slider{
    margin: 20px 0;
}
.rc-featured-session .section-title{
    margin:0;
}

.user-tags{
    text-align: center;
    margin: 10px 0;
}
.user-tags > span{
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 16px;
    /*font-weight: 500;*/
}
.user-tags > span:not(:last-child):after {
    content: "/";
    padding: 0 5px;
    margin: 0 5px;
}

.featured-session-media{
    padding: 300px 0;
    background-size: cover;
    background-position: 50%;
    position: relative;
    background-color: var(--color-light);
}
.featured-session-slider .slick-dots{
    bottom: 20px;
}


.sidebar-upcomming-session-wrap{
    height: 600px;
    border:1px solid var(--border-color);
    overflow: hidden;
    padding-bottom: 70px;
    margin: 20px 0;
}
.upcomming-header{
    padding: 20px 20px 10px;
}
.upcomming-header .session-title{
    float: left;
    margin-bottom: 5px;
    font-size: 16px;
}
.upcomming-header a{
    float: right;
    display: inline-block;
}
.upcomming-sidebar-content{
    overflow: auto;
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    margin-right: 10px;
}
.upcomming-sidebar-content{
    padding:10px 20px 15px;
}
.upcomming-sidebar-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.upcomming-sidebar-content ul li{
    padding-bottom: 7px;
    margin-bottom: 7px;
    list-style: none;
}
.upcomming-sidebar-content ul li:last-child{
    /*margin-bottom: 70px;*/
}

.upcomming-sidebar-content ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.upcomming-sidebar-content ul li:hover img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.upcomming-sidebar-content .entry-content {
    padding: 15px 0;
    display: table-row;
}
.upcomming-sidebar-content ul li:before,
.upcomming-sidebar-content ul li:after{
    content: "";
    display: table;
    clear: both;
}

.upcomming-sidebar-content .session-title{
    font-size: 14px;
}
.session-thumbnail{
    position: relative;
    width: 115px;
    height:115px;
    float: left;
    margin-right: 15px;
    overflow: hidden;
    background-color: var(--color-light);
}
.join-btn-wrapper{
    margin:7px 0 5px;
}
.join-btn-wrapper a{
    width: 100%;
    font-size: 14px;
    padding: 10px 30px;
}
.ribbon {
    width: 60px;
    height: 60px;
    padding: 5px 2px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    z-index: 1;
}
.ribbon:before, .ribbon:after {
    content: "";
    position: absolute;
}
.ribbon:before {
  /*  height: 0;
    width: 0;
    right: -5.5px;
    top: 0.1px;
    border-bottom: 6px solid #8D5A20;
    border-right: 6px solid transparent;*/
}
.ribbon:after {
    height: 0;
    width: 0;
    bottom: -13px;
    left: 0;
    border-left: 30px solid var(--secondary-color);
    border-right: 30px solid var(--secondary-color);
    border-bottom: 14px solid transparent;
}
.ribbon p {
    color: var(--color-white);
    font-size: 11px;
    font-weight: 300;
    margin: 0;
    width: 100%;
    word-break: break-word;
}



/*--------------------------------------------------------------
# Home package-section Styles
--------------------------------------------------------------*/
section{
    position: relative;
    padding: 50px 0;
    /*overflow: hidden;*/
}
.rc-featured-pricing:before,
.rc-featured-pricing:after{
    background: var(--primary-color);
    position: absolute;
    top: 0;
    content: "";
    height: 100%;
    width: 23%;
    z-index: -1;
    opacity: 0.14;
}
.rc-featured-pricing:before {
    left: 0;
}
.rc-featured-pricing:after {
    right: 0;
}
.pricing-header {
    width: 100%;
    height: 110px;
    position: relative;
    background-color: #579FFC;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.pricing-header  .price-bg {
    position: absolute;
    top: 24px;
    left: 50px;
}
.package-plan,
.pack-detail{
    text-align: center;
}
.single-pricing {
    border: 1px solid var(--border-color);
    /*padding: 45px 30px;*/
    background-color: var(--color-white);
    margin: 20px 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.single-pricing:hover{
    margin-top: 15px;
}
.pack-price {
    color:var(--text-color);
    font-size: 28px;
    font-weight: 600;
}
.package-plan {
    border: 1px solid;
    border-color: #ddd;
    border-radius: 50px;
    width: 200px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 5px 9px;
    box-shadow: 0px -8px 0px 1px rgb(255 255 255 / 35%);
    left: calc(50% - 100px);
    top: 70%;
    background-color: var(--color-white);
    position: absolute;
    z-index: 1;
}
.single-pack-col:nth-child(1) .package-plan{
    border-color:var(--vendor-color);
}
.single-pack-col:nth-child(1) .pricing-header{
    background-color: var(--vendor-color);
}
.single-pack-col:nth-child(2) .package-plan{
    border-color:#9B57EA;
}
.single-pack-col:nth-child(2) .pricing-header{
    background-color: #9B57EA;
}
.single-pack-col:nth-child(3) .package-plan{
    border-color:#FFAF60;
}
.single-pack-col:nth-child(3) .pricing-header{
    background-color: #FFAF60;
}


.pack-detail {
   padding: 80px 25px 40px 25px;
}
.package-plan p{
    color: var(--primary-color);
    margin:5px 0;
    font-size: 15px;
}
.pack-detail p{
    /*margin-bottom: 20px;*/
}
.pricing-content {
    text-align: center;
    padding: 0;
    margin: 0 0 15px;
    list-style: none;
    display: inline-block;
}
.pricing-content li {
    color: var(----text-secondary);
    font-size: 14px;
    /*padding: 0 0 0 30px;*/
    margin: 0 0 20px;
    position: relative;
}
.pricing-content li:before {
    content: "\f00c";
    color: var(--color-success);
    font-family: "fontawesome";
    font-size: 14px;
    margin: auto;
    margin-right: 5px;
    /*position: absolute;*/
    top: 1px;
    left: 0;
}
.pricing-content li.disable:before {
    content: "\f00d";
    color: var(--primary-color);
}
.pack-button{
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}
.price-btn {
    padding: 13px 30px;
    font-size: 14px;
    width: 70%;
}
.pack-button a{

}




/*--------------------------------------------------------------
# Home session list item wrapper Styles
--------------------------------------------------------------*/
.section-header-wrapper{
    margin-bottom: 20px;
}

.session-custom-container{
    padding: 0 20px;
}

.rc-recent-session-list .section-intro {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    float: left;
}

.rc-recent-session-list .primary-btn{
    float: right;
    display: inline-block;
}

.session-item {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    z-index: 0;

    background-size: cover;
    background-position: 50%;
    padding: 120px 0;
    position: relative;
    background-color: var(--color-light);
    margin-bottom: 15px;
}
.session-item:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: var(--text-dark);
    opacity: 0;
    z-index: 1;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.session-item:hover:after, .session-item:focus:after {
    opacity: .5;
}


.fav-meta {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    cursor: pointer;
    color: var(--color-white);
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}
.fav-meta a{
    color: var(--color-white);
    background: var(--text-color);
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: block;
}
.fav-meta.bg-filled a{
    background-color: var(--text-color);
    color: var(--secondary-color);
}

.session-item .text {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    padding: 15px;
    opacity: 0;
    z-index: 2;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
/*.session-item img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    z-index: -1;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    transition: all 0.6s ease;
}*/
/*.session-item:hover img, .session-item:focus img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}
*/
.session-item .text h3 {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.session-item .text h3 a {
    color: var(--color-white);
}
.session-item .text h3 a:hover{
    color: var(--primary-hover);
}
.session-item:hover .text, .session-item:focus .text {
    opacity: 1;
    bottom: 0;
}
.home-session-meta-wrapper .cat-links {
    display: inline-block;
    margin-right: 5px;
}
.home-session-meta-wrapper .post-time {
    display: inline-block;
    color: var(--color-white);
}
.session-item .live-time-stamp {
    padding: 10px;
    text-align: right;
    bottom: 10px;
    position: absolute;
    right: 8px;
    font-size: 12px;
}
.session-item .cur-time {
    padding: 5px 7px;
    width: auto;
    height: auto;
    line-height: inherit;
}

.home-session-meta-wrapper .session-by {
    background-color: var(--secondary-color);
    color: var(--color-white);
}

/*--------------------------------------------------------------
# Home testimonial section Styles
--------------------------------------------------------------*/

.feature-banner-wrapper{
    background-size: cover;
    background-position: 50%;
    padding: 135px 0;
    position: relative;
    background-color: var(--color-light);
    margin-bottom: 15px;
}


.client-image-wrapper{
    background-size: cover;
    background-position: 50%;
    padding: 120px 0;
    position: relative;
    background-color: var(--text-dark);
}

#rc-testimonial{
    margin: 0 -15px;
}
.testimonial-slider .slick-slide {
    margin:20px 15px;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background: #2457aa;
}

.slick-prev:before, .slick-next:before {
    color: var(--color-white);
}
.slick-next:before {
    content: "\f105";
    font-family: fontawesome;
}
.slick-prev:before {
    content: "\f104";
    font-family: fontawesome;
}
.testimonial-slider .slick-prev,
.testimonial-slider  .slick-next{
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    z-index: 22;
    border-radius: 4px;
    display: none;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    opacity: 0
}
.testimonial-slider .slick-prev{
    left: -30px;
}
.testimonial-slider  .slick-next{
    right: -30px;
}

.testimonial-slider:hover .slick-prev,
.testimonial-slider:hover .slick-next{
    display: block;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    opacity: 1;
}

.testimonial-slider:hover .slick-prev{
    left: 15px;
}
.testimonial-slider:hover .slick-next{
    right: 15px;
}
.slick-prev {
    left: 15px;
    z-index: 1;
}
.slick-next {
    right: 15px;
    z-index: 1;
}

.custom-nav .slick-prev, .custom-nav .slick-next {
  display: inline-block;
  position: static;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
.testimonial-slider,
.product-display-slide,
.product-slick{
    overflow: hidden;
}

.product-slick .slick-track{
    margin-left: inherit;
    margin-right: inherit;
}
/*----------------------------*\
    Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #DADADA;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: var(--primary-color);
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}


.client-content-wrapper{
    background-color: var(--background-light);
    padding: 18px;
    position: relative;
}
.testi-inner-content p{
    font-size: 14px;
    background: var(--color-white);
    border: 1px solid var(--border-light);
    padding: 35px 20px;
    margin: 0;
    font-weight: 400;
}
.quote-wrap{
    position: absolute;
    top:-31px;
    right: 10px;
    z-index: 1;
}
.quote-wrap img{
   /* font-size: 45px;
    color: #DFDFDF;*/
}

/*--------------------------------------------------------------
# Home footer-section Styles
--------------------------------------------------------------*/
#rcfooter{
    padding: 30px 0;
}
.application-area{
    text-align: center;
}
.application-area a{
    margin: 10px;
}

.application-area img {
    width: 180px;
    height: auto;
    margin:10px 0;
}

.footer-social{
    text-align: center;
}



/*--------------------------------------------------------------
# past-sessions page  Styles
--------------------------------------------------------------*/
 /*.filters {
    text-align: center;
}

 .filters ul {
    padding: 0;
    text-align: right;
}
 .filters ul li.active,  .filters ul li:hover {
    color: #e45447;
}
 .filters ul li {
    list-style: none;
    display: inline-block;
    padding: 0 15px;
    cursor: pointer;
    position: relative;
    text-transform: capitalize;
    font-size: 13px;
}*/

.top-filter-wrapper{
    margin: 20px 0;
}
.top-filter-wrapper ul{
    margin-bottom: 10px;
}
.top-filter-wrapper ul li{
    display: inline-block;
}
.top-filter-wrapper ul li a{
    padding: 10px 25px;
    text-align: center;
    display:inline-block;
    color: var(--text-color);
    margin-right: 10px;
    border:1px solid var(--border-light);
    background-color: var(--form-bg);
    font-weight: 500;
    border-radius:4px;
}
.top-filter-wrapper ul li.active a{
    color: var(--color-white);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
#reportrange,
.input-filters input{
    border-radius: 6px;
    font-size: 13px;
    height: 48px;
    border: 1px solid var(--border-light);
    background-color: var(--form-bg);
    padding: .375rem .75rem;
    width: 100%;
}
#reportrange{
    line-height: 36px;
}
.rc-date-range {
    position: relative;
}
span.date-span {
    position: absolute;
    top: 11px;
    right: 10px;
    color: var(--primary-color);
    cursor: pointer;
}
.input-filters .filter-search-wrap input{
    padding-left: 46px;
    font-size: 12px;
}

.filter-search-wrap input::placeholder {
  color: #D1D1D1;
  opacity: 1; /* Firefox */
}

.filter-search-wrap input:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #D1D1D1;
}

.filter-search-wrap input::-ms-input-placeholder { /* Microsoft Edge */
 color: #D1D1D1;
}

.btn.search-filter-btn {
    position: absolute;
    height: 48px;
    width: 48px;
    background: transparent;
    color: #D1D1D1;
    font-size: 15px;
}
.lfirst-filter{
   /* -webkit-box-flex: 0;
    -ms-flex: 0 0 38%;
    flex: 0 0 38%;
    max-width: 38%;
    display: inline-block;
    margin-right: 15px;*/
    float: left;
    width: 50%;
    padding-right: 15px;
}
.lsecond-filter{
   /* -webkit-box-flex:0;
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    max-width: 58%;
    position: relative;
    display: inline-block;*/
    float: left;
    width: 50%;
}
/*--over write date-range filter style--*/
.daterangepicker .ranges li.active,
.daterangepicker td.active, .daterangepicker td.active:hover  {
    background-color: var(--primary-color);
    color: var(--color-white);
}
.daterangepicker td.active, .daterangepicker td.active:hover {
    border-color: transparent;
}
/*svg.icon-search, svg.icon-close {
    width: 15px;
    height: 15px;
    fill: #000;
}
.search-menu{
    position: relative;
}
.search-menu a {
    height: 48px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid var(--border-light);
    background-color: var(--form-bg);
    display: block;
    width: 48px;
    line-height: 48px;
    text-align: center;
}
.search-menu svg.icon-close {
    display: none;
}
.search-menu form.search-form {
    min-width: 320px;
}
.search-menu  form.search-form input {
    background-color: #3f3f3f;
    border-color: #3f3f3f;
    color: #3f3f3f;
    font-weight: 400;
}
form.search-form button.search-submit {
    height: 45px;
    line-height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    border: none;
    width: 45px;
    border-radius: 0;
    outline: none;
}
@media screen and (min-width: 1024px){
    #search {
        position: absolute;
        z-index: 30;
        right: 0;
        top: 100%;
        display: none;
    }
    .search-menu form.search-form {
        border-color: #0a1f3c;
        border: 20px solid #10223d;
    }
    .search-menu  form.search-form input {
        background-color: #fff;
        border-color: #fff;
        color: #3f3f3f;
    }
    .search-menu form.search-form svg.icon-search {
        fill: red;
    }
    .search-menu .search-active .icon-search {
        display: none;
    }
    .search-menu .search-active .icon-close {
        display: inline-block;
    }
}
@media screen and (max-width: 1023px){
    #search {
        display: block !important;
    }
    .main-navigation form.search-form input {
        padding-left: 25px;
        background-color: #12315d;
        border: none;
        min-height: 55px;
        color: #fff;
    }
    .search-menu  form.search-form button.search-submit {
        height: 59px;
    }
    .search-menu  svg.icon-search, .main-navigation svg.icon-down {
        fill: #000;
        margin-top: -5px;
    }
}*/








/*--------------------------------------------------------------
# Session list page Styles
--------------------------------------------------------------*/


.page-list-session .section-title{
    text-align: left;
    margin-bottom: 20px;
}
.rc-session-list .text{
    position: inherit;
}

.session-list-contents .single-list-item{
    margin: 20px 0;
}
.single-list-item .post-time {
    color: var(--text-color);
}
.single-list-item .session-item:hover:after,
.single-list-item .session-item:focus:after{
    opacity: 0.1;
}
/* The customcheck */
.session-list-contents .form-check-inline{
    margin-right: 30px;
}
.check-filter{
    margin: 5px 0 20px;
}
.customcheck {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.customcheck input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #E3E6E9;
    border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.customcheck:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.customcheck input:checked ~ .checkmark {
    background-color: #02cf32;
    border-radius: 2px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.customcheck input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.customcheck .checkmark:after {
    left: 5px;
    top: 3px;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.rc-pagination{
    margin: 50px 0 20px;
}

.rc-pagination .page-link {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-left: 10px;
    color: var(--text-color);
    font-weight: 500;
    background-color: var(--background-light);
    border:none;
    border-radius: 4px;
}

.rc-pagination .page-item.active .page-link {
    z-index: 1;
    color: var(--color-white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.rc-pagination .page-link i{
    font-size: 18px;
}




/*--------------------------------------------------------------
# Pre-Session Styles
--------------------------------------------------------------*/

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(5deg);
  }
  70% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes sonar {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/*----------------rc-session----------------*/
.video-meta-elements{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    min-height: 65px;
    position: relative;
}
.meta-time{
    font-size: 16px;
    font-weight: 400;
}
.meta-time i{
    margin-right: 7px;
    font-weight: 600;
}
/*-post session meta hidden-*/
.top-video-meta-tags{
    position: absolute;
    left:20px;
    top: 60px;
    z-index: 2;
}
.top-video-meta-tags span{
    background-color: #FF3434;
    padding: 4px 8px 4px 13px;
    color: var(--color-white);
    position: relative;
    border-radius: 5px;
}
.top-video-meta-tags span:before{
    content: "";
    height: 5px;
    width: 5px;
    background-color: var(--color-white);
    border-radius: 50%;
    margin-right: 2px;
    position: absolute;
    left: 5px;
    top: 12px;
}
.bottom-video-meta-tags{
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}
.bottom-video-meta-tags .watch-btn{
    padding: 10px 20px;
    font-size: 14px;
}
.post-session .live-time-stamp{
    display: none;
}
.live-session .live-time-stamp{
    display: block;
}
/*.cur-time{
    border-radius: 6px;
    padding: 8px 10px;
}*/
.cur-time {
    border-radius: 6px;
    width: 115px;
    height: 38px;
    line-height: 38px;
    display: block;
    text-align: center;
    background-color:var(--text-dark);
    color: var(--color-white);
}
.waiting-time{
    color: var(--secondary-color);
}
.video-close a {
    width: 38px;
    height: 38px;
    display: block;
    text-align: center;
    line-height: 46px;
    border-radius: 6px;
    background: var(--close-bg);
    color: var(--color-white);
}
.video-close a:hover{
    opacity: 0.7;
    color: var(--color-white);
}
.video-close i{
    font-size: 20px;
}
.video-wrapper{
    position: relative;
    width: 100%;
    height: 80vh;
    background-color:var(--text-dark);
    /*height: 0;*/
    /*padding-bottom: 56.25%;*/
}
.video-wrapper img,
.video,
video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-holder{
    position: relative;
}
.timer-holder{
    position: absolute;
}
.timer-holder {
    position: absolute;
    display: block;
    z-index: 1;
    top: 50px;
    left: 50px;
}
.timer-holder p{
    display: block;
    margin: 0;
    line-height: 1.4;
}

.timer-holder .meta-time{
    color: var(--color-white);
    background-color: var(--text-dark);
    opacity: 0.65;
    border-radius: 50%;
    height: 175px;
    width: 175px;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
.timer-holder .h-text{
    font-size: 16px;
}
.timer-holder .date-wrap{
    font-size: 12px;
    font-weight: normal;
}
.sess-time span{
    font-size: 40px;
    margin-right: 3px;
    font-weight: 500;
}
.rc-featured-custom-header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rc-featured-custom-header img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-navigator {
    position: absolute;
    bottom: 16px;
    right: 18px;
    width: 100%;
    text-align: right;
}
.toolbarButton {
    width: 38px;
    height: 38px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    background-color: rgb(17 17 18);
    border: 0;
    border-radius: 6px;
    /*padding-top: 20px;*/
    cursor: pointer;
}
.switchCamera {
    background-image: url(../img/videobtns/switchCamera.svg);
}
.cameraOn {
    background-image: url(../img/videobtns/cameraOn.svg);
}
.cameraOff {
    background-image: url(../img/videobtns/cameraOff.svg);
}
.speakerOn {
    background-image: url(../img/videobtns/speakerOn.svg);
}
.speakerOff {
    background-image: url(../img/videobtns/speakerOff.svg);
}
.microphoneOn {
    background-image: url(../img/videobtns/microphoneOn.svg);
}
.microphoneOff {
    background-image: url(../img/videobtns/microphoneOff.svg);
}
.fullscreenOn {
    background-image: url(../img/videobtns/fullscreen.svg);
}
.fullscreenOff {
    background-image: url(../img/videobtns/fullscreenoff.svg);
}
.rc-session .chatbar-wrapper,
.chatbar-wrapper .chatbar-brand > a,
.rc-session .page-content,
#show-chatbar,
#close-chatbar {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.rc-session .theme {
}

.rc-session .theme.session-inc-chat {
    background: #1e2229;
}

/*----------------author detail styler----------------*/
.authorbox {
    margin: 15px 0;
    overflow: hidden;
    padding: 15px 20px ;
    position: relative;
}
.author-avatar {
    float: left;
    margin: 0 15px 15px 0;
}
.author-avatar img{
    height: 68px;
    width: 68px;
    object-position: top;
    object-fit: cover;
    border-radius: 50px;
}

.session-top-det{
    margin-bottom: 15px;
}
.session-top-det a:hover h4{
    color:var(--primary-hover);
}
.authorbox .session-detail{
    float: left;
    max-width: 90%;
    width: 90%;
}
.author-info{
    font-size: 14px;
    margin-bottom: 5px;
}
.cat-links{
    font-size:12px;
    margin: 5px 0;
}
.session-by{
    padding: 3px 6px;
    border-radius: 3px;
    background-color: #E3E6E9;
}
.cat-links span{
    margin-right: 5px;
}
.cat-links span:last-child{
    margin: 0;
}
.post-time{
    font-size: 12px;
    color: var(--secondary-color);
}

.session-title{
    font-size: 16px;
    margin-bottom: 10px;
}

/*----------------toggeled chatbar----------------*/

.rc-session.toggled .chatbar-wrapper {
    right:0px;
}


@media screen and (min-width: 768px) {
    .rc-session.toggled .page-content {
        padding-right: 380px;
    }
}

@media screen and (max-width: 767px) {
    .rc-session.toggled .page-content {
        padding-right: 0;
    }
}



/*----------------show chatbar button----------------*/
#show-chatbar {
    position: fixed;
    right: 0;
    /* top: 68px; */
    width: 35px;
    transition-delay: 0.3s;
    border-radius: 0;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}
.page-wrapper.toggled #show-chatbar {
    right: -40px;
}
/*----------------chatbar-wrapper----------------*/

.chatbar-wrapper {
    width: 380px;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
}

/*----------------chatbar-content----------------*/

.chatbar-content {
    max-height: calc(100% - 30px);
    height: calc(100% - 30px);
    /*overflow-y: auto;*/
    position: relative;
    border-left: 1px solid var(--border-color);
}

.chatbar-content.desktop {
    overflow-y: hidden;
}
.chatbar-body{
    overflow:auto;
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    margin-right: 10px;
    margin-top: 10px;
    background-color: var(--color-white);
}

/*--------------------chatbar-brand----------------------*/
/*.session-link-wrapper{
    padding: 15px 20px;
    background-color: #F4F7F8;
    border-bottom: 1px solid var(--border-color);
    min-height: 65px;
    display: flex;
    align-items: center;
}
.session-link-wrapper .link-text{
    width: 80%;
    padding-right: 10px;
}
.session-link-wrapper h5{
    font-size: 14px;
    font-weight:500;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0;
}
.session-link-wrapper .link-copy{
    width: 20%;
}*/
.chatbar-wrapper .chatbar-brand {
    position: relative;
    padding: 10px 20px;
    text-align: center;
    display: block;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--color-white);
}

.chatbar-wrapper .chatbar-brand > h4{
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    flex-grow: 1;
}

.chatbar-wrapper .chatbar-brand #close-chatbar {
    cursor: pointer;
    font-size: 20px;
}
/*--------------------chatbar-header----------------------*/

.chatbar-wrapper .chatbar-header {
    padding: 20px;
    overflow: hidden;
}

/*--------------------------page-content-----------------------------*/

.rc-session .page-content {
    display: inline-block;
    width: 100%;
    padding-left: 0px;
    padding-top: 0px;
}

.rc-session .page-content {
  overflow-x: hidden;
}

/*------scroll bar---------------------*/
.upcomming-sidebar-content::-webkit-scrollbar-track,
.chatbar-body::-webkit-scrollbar-track{
    border-radius: 50px;
    background-color: var(--border-color);
}
.upcomming-sidebar-content::-webkit-scrollbar,
.chatbar-body::-webkit-scrollbar{
    width: 4px;
    background-color: var(--border-color);
    border-radius: 50px;
}
.upcomming-sidebar-content::-webkit-scrollbar-thumb,
.chatbar-body::-webkit-scrollbar-thumb{
    border-radius: 50px;
    background-color: var(--scroll-color);
}

/*-----------------------------session-inc-chat-------------------------------------------------*/


.rc-session.session-inc-chat.toggled #close-chatbar {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 20px;
    color: var(--text-dark);
}

.rc-session.session-inc-chat.toggled #close-chatbar:hover {
    color: red;
}
/*--------------------------side-footer------------------------------*/
.session-inc-chat .chatbar-footer {
    border-top: 1px solid var(--border-color);
    background: #F4F7F8;
    padding: 5px 20px;
}

.chatbar-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    /*display: flex;*/
}
.footer-user-chat {
    align-items: center;
}

.footer-user-chat .chat-auth {
    padding-right: 5px;
}
.emoji-wrap a {
    font-size: 23px;
    color: #9EB0BC;
}
.emoji-wrap a:hover{
    color: #fa596c;
}
.emoji-wrap a i{
    font-weight: 600;
}
.footer-user-chat input {
    border-bottom: 1px solid #f4f7f8;
    background:#f4f7f8;
    color: #9EB0BC;
}
.footer-user-chat #emojionearea1,
.footer-user-chat input {
    border: none;
    font-size: 14px;
    border-radius: 0;
    width: 100%;
    height: 32px;
    line-height: 32px;
    border-bottom: 1px solid #f4f7f8;
    background: #f4f7f8;
    color: #9EB0BC;
}
.footer-user-chat .emojionearea,
.footer-user-chat .emojionearea.form-control{
    border:none;
    border-bottom: 1px solid #f4f7f8;
    background: #f4f7f8;
    color: #9EB0BC;
    box-shadow: none;
    border-radius: 0;
}

/**-- overwrite emoji css--**/

.footer-user-chat .emojionearea .emojionearea-editor{
    min-height: 35px;
    max-height: inherit;
}
.footer-user-chat .emojionearea .emojionearea-picker.hidden{
    /*display: block;*/
    /*opacity: 1;*/
}
.footer-user-chat .emojionearea .emojionearea-picker.emojionearea-picker-position-left,
.footer-user-chat .emojionearea .emojionearea-picker.emojionearea-picker-position-right{
   /* margin-right: inherit;
    margin-top: -295px;
    top: 0;
    right: inherit;*/
}
.footer-user-chat .emojionearea.focused{
    box-shadow: initial;
}


.footer-user-chat input:active,
.footer-user-chat input:hover,
.footer-user-chat input:focus{
    border-bottom: 1px solid;
    border-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: none;
}
.footer-user-chat input:focus{
    background-color: transparent;
}
.footer-user-chat input::placeholder {
    color: #9EB0BC;
    opacity: 1; /* Firefox */
}
.footer-user-chat input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #9EB0BC;
}
.footer-user-chat input::-ms-input-placeholder { /* Microsoft Edge */
    color: #9EB0BC;
}

.chatbar-footer .primary-btn {
    font-size: 14px;
    height: 32px;
    margin-left: 10px;
    line-height: 15px;
}


/*------chatbar body---------------------*/
.chat-item {
    padding:10px 10px 0 10px;
}
/*.chat-item:last-child{
    border:none;
} */
.chat-item:last-child {
    padding-bottom: 95px;
}
.chat-item img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    object-position: top;
}
.att-user {
    height: 38px;
    width: 38px;
    object-position: top;
    object-fit: cover;
    border-radius: 50%;
    font-size: 15px;
    text-align: center;
    line-height: 38px;
    margin-right: 10px;
    color: var(--color-white);
}

.chat-text {
    font-size: 13px;
    padding: 3px;
    color: var(--text-color);
}
.sent-content{
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}
.chat-item:last-child .sent-content{
    border:none;
}
.chat-user{
    font-weight: 500;
    color: #252525;
}

.chat-auth img{
    height: 38px;
    width: 38px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}
.chat-auth .att-user{
    margin-right: 0;
}

/*--chat no content--*/
.no-chat-content{
    text-align: center;
}

.no-chat-content {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    width: 100%;
}


/*--*/
.pre-session-media .chatbar-wrapper{
    /*top: 97px;*/
    padding-top: 100px;
    z-index: 1;
}



/*--------------------------------------------------------------
# Rc Design Dashboard Styles
--------------------------------------------------------------*/

.dashboard {
    height: 100%;
    height: 100vh;
    display: flex;
    border-bottom: 1px solid var(--border-light);
    display: table;
}
.left-menu-wraper {
   vertical-align: top;
    display: table-cell;
    height: 100%;
    border-right: 1px solid var(--border-light);
}
.right-content-wraper {
    width: 100%;
    padding: 25px 30px;
    vertical-align: top;
    display: table-cell;
    height: 100%;
}
.sidebar-navigation {
    width: 270px;
}
.inner-menu-wrap {
    padding: 20px 25px;
    height: 100%;
    overflow: auto;
}

.navbar-sidenav .nav-link i{
    margin-right: 8px;
    font-size: 18px;
}
.navbar-sidenav .nav-link{
    color: var(--dark-color);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.4s ease 0s;
}
.navbar-sidenav .active .nav-link{
    color: var(--primary-color);
}
.navbar-sidenav .nav-link:hover{
    color: var(--primary-color);
    transition: all 0.4s ease 0s;
    margin-left: 5px;
}
.navbar-sidenav .active .nav-link:after {
    float: right;
    content: '\f105';
    font-family: 'FontAwesome';
    display: none;
}


.profile-form-row-wrapper{
    width: 60%;
}
.form-title{
    margin-bottom: 20px;
}
.form-title h4{
    font-size: 24px;
}
.upload-preview{
    padding: 10px;
    position: relative;
    text-align: center;
}
.upload-preview i {
    color: white;
    font-size: 9px;
    transform: translate(25px,66px);
    background: var(--primary-color);
    height: 20px;
    width: 20px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid var(--color-white);
}

.upload-preview  .preview-img{
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
}

.browse-button {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -45px;
    background:rgb(0 0 0 / 15%);
    opacity: 1;
    transition: 0.3s ease;
}

.browse-button:hover{
    opacity: 1;
}

.browse-input{
    width: 90px;
    height: 90px;
    border-radius: 100%;
    transform: translate(-1px,-26px);
    opacity: 0;
}
.measurement {
    margin-left: 0;
    color: var(----text-secondary);
    position: absolute;
    top: 44px;
    right: 38px;
}
.form-button-group{
    display: block;
    margin: 20px 0;
}
.form-button-group .btn{
    margin-right: 10px;
}


/*.profile-contentdetail-wrapper {
    width: 60%;
}*/
.dashboard-common-width{
     width: 90%;
}
.profile-header{
    margin-bottom: 25px;
}

.profile-detail {
    float: left;
    display: flex;
}
.user-details {
    float: right;
}
.profile-detail img{
    height: 89px;
    width: 89px;
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
    margin-right: 15px;
}
.profile-detail p{
    margin-bottom: 5px;
}
.username{
    background-color: #E3E6E9;
    color: var(--dark-color);
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 12px;
    display: inline-block;
}
.icon-text i{
    margin-right: 5px;
}

.user-detail-content-wrapper{
    background-color: var(--background-light);
    padding: 20px;
}

.content-list-item{
    margin: 10px 0;
    font-weight: 400;
}

.l-title{
    color: var(--dark-color);
    font-weight: 500;
}
.r-content{
    color: var(--text-color);
    font-weight: 500;
}

.social-menu ul li{
    display: inline-block;
    margin-right: 15px;
}
.r-content .social-menu ul li img{
    height: 20px;
    width: 20px;
}

/*.password-form-row-wrapper{
    width: 60%;
}*/
.common-content-row{
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}
.common-content-row:last-child{
    border: none;
}
.plan-title{
    margin-bottom: 15px;
}
.plan-title h5{
    font-size: 16px;
    font-weight: 500;
}
/*.plan-payment-details li{
    margin: 5px 0;
}
.plan-header li span {
    float: right;
    text-align: right;
}*/
.plan-action-wrapper{
    margin: 8px -10px 8px;
    text-align: right;
}
.plan-action-wrapper button,
.plan-action-wrapper a{
    border-radius: 0;
}
.plan-action-wrapper .success-plan-btn,
.plan-action-wrapper .cancel-plan-btn{
    padding: 7px 20px;
    font-size: 12px;
}


/*--plan new design style--*/

.bill-content-wrapper,
.plan-detail-content-wrapper{
    background-color: var(--background-light);
    border: 1px solid  var(--border-color);
    position: relative;
}
.bill-detail-list-wrapper,
.plan-detail-list-wrapper{
    padding: 15px 20px 10px;
}
.plan-menu-wrapper{
    padding: 10px 20px 20px ;
}
.plan-alert-info-wrapper {
    border-top: 1px dotted var(--dotted-border-color);
    padding: 12px 20px;
}
.row-info{
    align-items: center;
}
.info-head h5{
    margin-bottom: 5px;
}
.info-head p{
    margin:0;
    font-weight: 400;
    font-size: 13px;
}
.plan-menu-wrapper ul li {
    display: inline-block;
}
.plan-menu-wrapper ul li a{
    padding-right: 15px;
    position: relative;
    margin-right: 15px;
    color: var(--text-dark);
    font-weight: 500;
}
.plan-menu-wrapper ul li a:after {
    content: "";
    position: absolute;
    height: 65%;
    right: 0;
    width: 2px;
    background-color: var(--text-dark);
    top: 4px;
}
.plan-menu-wrapper ul li:last-child a:after{
    content: none;
}
.new-plan-alert-wrapper{
    border-top: 1px dotted var(--dotted-border-color);
    padding: 10px 20px;
}
.plan-stable-msg-wrapper{
    padding:12px 20px;
}
.new-plan-alert-wrap{
    background-color: var(--secondary-light);
    border:1px solid var(--secondary-border);
}
.billing-history-detail-wrapper .common-content-row {
    border: none;
    padding-bottom: 0;
}
.bill-status-wrap {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}
.status-label{
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 12px;
}
.active-status{
    background: var(--success-color);
    color: var(--color-white);
}
.inactive-status{
    background-color: var(--text-color);
    color: var(--color-white);
}


/*.access-list-details li{
    position: relative;
    padding-left: 25px;
    margin: 5px 0;
}
.access-list-details li:before {
    content: "\f00c";
    background-color: var(--color-success);
    color: var(--color-white);
    font-family: "fontawesome";
    font-size: 9px;
    height: 15px;
    width: 15px;
    line-height: 15px;
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
    position: absolute;
    top: 3px;
    left: 0;
}*/
.switch-plan-wrapper{
    /*display: flex;*/
    /*flex-wrap: wrap;*/
}
.switch-plan-wrapper .switch-plan-item {
    position: relative;
    display: inline-block;
    left: inherit;
    top: inherit;
    border: 1px solid;
    border-color: var(--vendor-color);
    border-radius: 50px;
    width: 130px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 8px 14px;
    text-align: center;
    margin-right: 10px;
    transition: all 0.3s ease 0s;
    /*flex:1;*/
    /*flex-basis: 130px;*/
    /*flex-grow: 1;*/
}
.switch-plan-wrapper .switch-plan-item:last-child{
    margin-right:0;
}
.switch-plan-wrapper .switch-plan-item a{
    display: block
}
.switch-plan-wrapper .switch-plan-item:hover{
    border-color: var(--primary-color);
    transition: all 0.3s ease 0s;
}
.switch-plan-item p {
    color: var(--primary-color);
    margin: 2px 0;
    font-size: 12px;
}
.switch-plan-item .pack-price {
    font-size: 17px;
}
@media (min-width: 576px){
    .plan-switch-modal .modal-dialog {
        max-width: 600px;
    }
}
.plan-switch-modal .modal-content{
    border-radius: 8px;
}
.plan-switch-modal .modal-header{
    text-align: center;
}
.plan-alert-info{
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-light);
    padding: 15px 25px;
    text-align: center;
    border-radius: 8px;
    margin:0 0 20px 0;
}
.plan-alert-info h4{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.plan-alert-info p{
    font-size: 13px;
    margin: 0;
}
.plan-detail-info{

}
.plan-detail-info .plan-title{

}
.plan-detail-info .plan-title h5{
    font-size: 13px;
}

.plan-detail-info .plan-modal-list-details{
    margin:0;
}

.plan-modal-list-details li{
    font-size: 13px;
    margin: 5px 0;
}

.text-high{
    color: var(--primary-color);
}
.plan-button-wrapper {
    margin: 20px 0 0;
    display: flex;
    justify-content: space-between;
}
.update-email-btn-wrapper{
    margin: 20px 0;
}
.btn-coach-collapse{
    display: none;
}



/*--------------------------------------------------------------
# coach dashboard header
--------------------------------------------------------------*/
.coach-dashboard-header{
    background-color: var(--color-white);
    border: none;
    box-shadow: -3px 3px 9px #003C7114;
}
.coach-dashboard-header .site-logo img{
    max-height: 45px;
}
.coach-dashboard-header .site-branding{
    padding: 5px 0;
    min-height: 72px;
}
.header-coach-row{
    width: 100%;
}
.filter-body-md{
    display: none;
}

.coach-meta-center-items{
    display: flex;
    align-items: center;
}
.coach-header-btn-wrapper{
    margin-right: 12px;
}
.coach-header-btn-wrapper a{
    margin-right: 8px;
    font-size: 12px;
    padding: 10px 18px;
}
.header-input-filters input {
    border-radius: 6px;
    font-size: 14px;
    height: 38px;
    border: 1px solid var(--border-light);
    background-color: var(--form-bg);
    padding: .375rem .75rem;
    width: 100%;
}
.header-input-filters .filter-search-wrap input {
    padding-right: 46px;
    font-size: 12px;
}
.rule-search{
    position: relative;
}
.btn.search-header-btn {
    position: absolute;
    height: 38px;
    width: 38px;
    background: transparent;
    color: var(--primary-color);
    font-size: 13px;
    top: 0;
    right: 0;
}

/*--coach page wrapper styles--*/

.coach-page-wrapper{
    background-color: var(--secondary-page-bg);
    height: 100%;
}
.page-list-wrapper{
    /*padding: 0 60px;*/
}
.current-list-session{

}
.current-list-session .section-title{
    text-align: left;
    margin-bottom: 20px;
}
.single-current-item{
    padding: 15px;
    background: var(--color-white) 0% 0% no-repeat padding-box;
    box-shadow: -3px 3px 9px #003C7114;
    border-radius: 8px;
    opacity: 1;
    margin: 15px 0;
}
.single-current-item .session-thumbnail{
    height: 76px;
    width: 107px;
}
.single-current-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-current-item .entry-content {
    padding: 15px 0;
    display: table-row;
}
.single-current-item .entry-content .session-title{
    font-size: 12px;
    line-height: 1.6;
}

.single-item-top-wrap{
    margin-bottom: 10px;
}
.single-session-detail{
    margin-top: 15px;
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.single-session-detail ul li:before,
.single-session-detail ul li:after{
    display: block;
    content: "";
    clear: both;
}
.single-session-detail ul li{
    margin: 5px 0;
    font-size: 12px;
}
.left-label {
    color: var(--text-color-light);
    display: inline-block;
    padding: 0;
    width: 40%;
    max-width: 200px;
    float: left;
}
.right-detail{
    display: inline-block;
    width: 60%;
    float: left;
}
.right-detail p{
    margin: 0;
    font-weight: 500;
}
.action-meta-wrapper{
    /*display: flex;*/
    /*align-items: center;*/
    margin-top: 15px;
}
.icons-list {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
    font-size: 0;
    min-width: 100px;
}
.icons-list > li:first-child {
    margin-left: 0;
}
.icons-list > li {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    font-size: 13px;
}
.icons-list > li > a {
    color: inherit;
    display: block;
    background-color: var(--color-light);
    border-radius: 50%;
    height: 24px;
    width: 24px;
    line-height: 24px;
    text-align: center;
    opacity: 1;
    filter: alpha(opacity=100);
    transition: all ease-in-out 0.15s;
}
.icons-list > li > a i{
    font-size: 11px;
}
.icons-list > li > a .fa-trash-alt{
    color: var(--color-danger);
}
.icons-list > li > a:hover{
    opacity: 0.8;
}
.position-left {
    margin-right: 7px;
}
.position-right {
    margin-left: 7px;
}
.action-start a{
    color: var(--color-success);
    font-size: 12px;
}
.pull-left {
    float: left;
}
.pull-right {
    float: right;
}
.re-icon i{
    color: var(--secondary-color);
}
.scroll-wrapper{
    max-width: 100%;
    display: inline-flex;
    vertical-align: top;
    overflow-x: scroll;
    width: 100%;
    flex-wrap: nowrap;
}
.scroll-item{
    min-width: 300px;
    display: inline-block;
    vertical-align: top;
    padding: 10px;
}
.scroll-wrapper::-webkit-scrollbar-track{
    border-radius: 50px;
    background-color: var(--border-color);
}
.scroll-wrapper::-webkit-scrollbar{
    /*width: 3px;*/
    height: 7px;
    background-color: var(--border-color);
    border-radius: 50px;
}
.scroll-wrapper::-webkit-scrollbar-thumb{
    border-radius: 50px;
    background-color: var(--scroll-color);
}

/*--upcomming session table-page view--*/

.upcomming-session-table-view .section-intro {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    float: left;
    display: flex;
    /*align-items: center;*/
}
.btn-session-add {
    color: var(--color-white) !important;
    background: var(--primary-color);
    height: 33px;
    width: 33px;
    text-align: center;
    line-height: 33px;
    color: var(--color-white);
    font-weight: 300;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-session-add:hover{
    background-color: var(--primary-hover);
}
.upcomming-session-table-view .comming-session-filter-wrapper {
    float: right;
    display:flex;
}
.comming-session-filter-wrapper  .default-select .nice-select {
    border: none;
    border-radius: 7px;
    height: 38px;
    line-height: 38px;
    background: var(--color-white);
    padding-left: 20px;
    padding-right: 40px;
    box-shadow: -3px 3px 9px #003c7114;
}
.coach-name-select,
.coach-category-select,
.coach-date-select {
    margin-left: 10px;
}
.comming-session-filter-wrapper .single-input {
    display: block;
    width: 100%;
    line-height: 38px;
    border: none;
    border-radius: 7px;
    outline: none;
    background: var(--color-white);
    padding: 0 20px;
    box-shadow: -3px 3px 9px #003c7114;
}
.icons-list > li > a.action-play{
    color: var(--color-white);
    background-color: var(--color-success);
}
.upcomming-table .rc-pagination .page-link {
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
}
.confirm-btn{
    width: 100%;
    padding: 10px 30px;
    font-size: 12px;
    margin-top: 20px;
    display: block;
}
span.re-icon img {
    height: 20px;
    width: 20px;
}


/*=======================================================
Style Switcher
========================================================*/
.coach-toggle-view-sidebar .detail-content{
    background-color: var(--color-white);
    /*height: 100vh;*/
    /*overflow: scroll;*/
}
.coach-toggle-view-sidebar .table-switcher.table-open .detail-content{
    padding: 15px;
    padding-bottom: 100px
}
/*.table-switcher {
    position: absolute;
    left: 0;
    top: 73px;
    width: 90%;
    z-index: 999;
    padding: 0px;
    display: none;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.table-switcher.table-open{

}*/

/*.detail_close {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 0;
    top: 73px;
    z-index: 9999;
    text-align: center;
    background: var(--secondary-color);
    color: var(--color-white);
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}
.detail_close:focus,
.detail_close:hover{
    color: var(--color-white);
}
.detail_close i {
    font-size: 18px;
}
.position {
    width: 80%;
    left: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--color-white);
    padding: 20px;
}*/
/*.table-overlay.active {
    background-color: var(--text-dark);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 3;
}*/



/*left right modal*/
.modal.left_modal{
  position: fixed;
  z-index: 99999;
  top: 0;
}
.modal.left_modal .modal-dialog{
  position: fixed;
  margin: auto;
  width: 90%;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
      -ms-transform: translate3d(0%, 0, 0);
       -o-transform: translate3d(0%, 0, 0);
          transform: translate3d(0%, 0, 0);
}

.modal.left_modal .modal-dialog {
    /* max-width: 100%; */
    /*margin: 1.75rem auto;*/
}
@media (min-width: 576px){
    .left_modal .modal-dialog {
        max-width: 100%;
    }
}
.modal.left_modal .modal-content{
  /*overflow-y: auto;
    overflow-x: hidden;*/
    height: 100vh !important;
}

.modal.left_modal .modal-body{
  padding: 15px 15px 30px;
}



/*Left*/
.modal.left_modal.fade .modal-dialog{
  left: -80%;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left_modal.fade.show .modal-dialog{
  left: 0;
  box-shadow: none;
}



/* ----- MODAL STYLE ----- */
.modal.left_modal .modal-content {
    border-radius: 0;
    border: none;
}

.modal-header.left_modal,
.modal-header.right_modal {
    padding: 10px 15px;
    border-bottom-color: #EEEEEE;
    background-color: #FAFAFA;
}

.modal_outer .modal-body {
    /*height:90%;*/
    overflow-y: auto;
    overflow-x: hidden;
    height: 91vh;
}
.modal-backdrop {
    /*display: none;*/
}

.detail_close {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    left: 0;
    top: 73px;
    z-index: 9999;
    text-align: center;
    background: var(--secondary-color);
    color: var(--color-white);
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
}
.modal-content{
    border-radius: 20px;
}
.modal-header{
    border: none;
    padding: 25px 25px 10px;
}
.modal-header .close {
    font-weight: bold;
    opacity: 1;
}
.modal-header .close i {
    font-weight: 800;
}
.modal-header .close:hover,
.modal-header .close:focus{
    opacity: 0.5;
}
.modal-title {
    font-size: 16px;
    font-weight: 500;
}
.modal-body {
    padding: 25px;
}


.modal-body .form-group label{
    font-size: 12px;
    font-weight: 400;
}

.single-input {
    display: block;
    width: 100%;
    line-height: 44px;
    border: 1px solid var(--border-light);
    border-radius: 7px;
    outline: none;
    background: var(--form-bg);
    padding: 0 20px;
    box-shadow: none;
}
.default-select .nice-select {
    border: 1px solid var(--border-light);
    border-radius: 7px;
    height: 48px;
    background: var(--form-bg);
    padding-left: 20px;
    padding-right: 40px;
    line-height: 48px;
}

.weekDays-selector{
    display: flex;
    justify-content: space-between;
}
.weekDays-selector input {
  display: none!important;
}

.weekDays-selector input[type=checkbox] + label {
      display: inline-block;
      border-radius: 50%;
      background: var(--form-bg);
      border: 1px solid var(--border-light);
      height: 38px;
      width: 38px;
      margin-right: 3px;
      line-height: 40px;
      text-align: center;
      cursor: pointer;
      color: var(--text-color);
}

.weekDays-selector input[type=checkbox]:checked + label {
    background: #2AD705;
    color: var(--color-white);
}

.info-ico i {
    color: #C9C9C9;
    font-size: 13px;
    margin-left: 5px;
}

/**--cuatom modal confirm popup box--**/
/*.confirm-msg {
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.confirm-msg.is-visible {
    visibility: visible;
}

.confirm-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.confirm-msg.is-visible .confirm-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.confirm-wrapper {
  position: absolute;
  z-index: 9999;
  top: 6em;
  left: 50%;
  width: 32em;
  margin-left: -16em;
  background-color: var(--color-white);
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}

.confirm-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}

.confirm-msg.is-visible .confirm-transition {
  transform: translateY(0);
  opacity: 1;
}

.confirm-header,
.confirm-content {
  padding: 1em;
}

.confirm-header {
  position: relative;
  background-color: var(--color-white);
  box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
  border-bottom: 1px solid #e8e8e8;
}

.confirm-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  color: #aaa;
  background: none;
  border: 0;
}

.confirm-close:hover {
  color: #777;
}

.confirm-heading {
  font-size: 1.125em;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.confirm-content > *:first-child {
  margin-top: 0;
}

.confirm-content > *:last-child {
  margin-bottom: 0;
}*/



/*----confirm-wrapper--------- */
.confirm-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color:rgb(0 0 0 / 76%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.confirm-wrapper.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.confirm-wrapper-container {
    position: relative;
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width:415px;
    pointer-events: auto;
    background-color: var(--color-white);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 20px;
    outline: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.confirm-wrapper-container .confirm-wrapper-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}
.confirm-wrapper-container .confirm-wrapper-close::before, .confirm-wrapper-container .confirm-wrapper-close::after {
    content: '';
    position: absolute;
    top: 12px;
    width: 14px;
    height: 3px;
    background-color: #8f9cb5;
}
.confirm-wrapper-container .confirm-wrapper-close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 8px;
}
.confirm-wrapper-container .confirm-wrapper-close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 8px;
}
.is-visible .confirm-wrapper-container {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
@media only screen and (min-width: 1170px) {
  .confirm-wrapper-container {
    margin: 3em auto;
  }
}

.confirmation-message{
    width: 80%;
    margin: 0 auto;
    margin-bottom: 25px;
}
.confirmation-message h4 {
    text-align: center;
    font-size: 16px;
}
.session_name-wrap{
    margin-bottom: 20px;
}
.session_name-wrap h5{
    font-size: 14px;
}
.confirm-detail p{
    font-size: 12px;
}

.confirm-list-wrapper .content-list-item{
    font-size: 12px;
}
.confirm-list-wrapper .content-list-item .weekDays-selector{
    justify-content: inherit;
}
.confirmation-btn-wrappers{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.confirmation-btn-wrappers a{
    padding: 12px 40px;
}

.confirm-list-wrapper .right-list-text{
    font-weight: 500;
}

/**--coach live session--*/

.video-redirect a {
    width: 100%;
    padding: 0 11px;
    line-height: 38px;
    height: 38px;
    background: var(--close-bg);
    color: var(--color-white);
    display: block;
    text-align: center;
    border-radius: 6px;
    border: 1px solid var(--color-white);
}
.video-redirect a {
    position: absolute;
    width: auto;
    display: block;
    bottom: -20px;
    z-index: 1;
    right: 20px;
}
.video-redirect a:hover{
    background: var(--close-bg-hover);
    color: var(--color-white);
}
.video-redirect.play-redirect a{
    background-color: var(--color-success);
}
.floated-edit{

}
.floated-edit a{
    color: var(--text-color);
}
.floated-edit  i{
    background-color: #E7E9F2;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
}

.floated-edit {
    position: absolute;
    right: 20px;
    z-index: 2;
}


/*--------------------------------------------------------------
# Rc Design media query Styles
--------------------------------------------------------------*/

@media screen and (min-width: 1900px){



}
@media (max-width: 1024px) {
  /*.login-featured{
    display: none;
  }*/
}
@media (max-width: 1024px) and (min-width: 768px) {
     .bottom-meta-auth{
        /*position: inherit;
        padding-top: 3%;*/
    }
    .reset-wrapper{
        padding-bottom: 1%;
    }

}




/*--------------------------------------------------------------
#                   RESPONSIVE
--------------------------------------------------------------*/
@media screen and (min-width: 567px) {

}
@media screen and (min-width: 767px) {


}
@media screen and (min-width: 992px) {

}
@media screen and (min-width: 1024px) {

}
@media screen and (min-width: 1200px) {

}
@media screen and (min-width: 1900px) {
    .container{
        max-width: 1300px;
    }
    .auto-form-wrapper{
        width: 60%;
        /*height: 100vh;*/
        padding-top: 10%;
        max-width: 500px;
        padding-bottom: 10%;
    }
    .chatbar-wrapper {
      width: 450px;
    }
    .featured-content-wrapper{
        max-width: 800px;
    }
    .featured-content-wrapper .entry-title {
        font-size: 52px;
    }
    .featured-content-wrapper .entry-content, .featured-content-wrapper .entry-content p {
        font-size: 22px;
    }
    .rc-featured-custom-header {
        height: 75vh;
    }
    .rc-featured-pricing:before, .rc-featured-pricing:after{
        widows: 30%;
    }
    .rc-session.toggled .page-content{
        padding-right: 450px;
    }
    .session-item {
        padding: 170px 0;
    }
    .session-item .text h3 {
        font-size: 18px;
    }
    .client-image-wrapper{
        padding: 170px 0;
    }
    .dashboard-common-width{
        width: 80%;
    }
}
@media screen and (max-width: 1023px) {
   /* .chatbar-wrapper {
        width: 100%;
    }
    .rc-session .page-content {
        padding-right: inherit;
    }*/
    .page-frames{
        display: none;
    }
    .header-coach-row .coach-meta-center-items{
        display: none;
    }
    .filter-body-md{
        display: block;
        padding: 20px 0 0;
    }
    .current-list-session{
        /*padding-top: 30px;*/
    }
}

@media screen and (max-width: 992px) {
    .auto-form-wrapper{
        width: 89%;
    }
    .option-links-wrapper{
        width: auto;
        display: inline-block;
        align-items: inherit;
    }
    .option-links-wrapper a{
        width: auto;
        padding: 4px 9px;
    }
    .login-featured{
        display: none;
      }
      .main-navigation li a:hover:after {
        width: 100%;
    }
     .dashboard-common-width{
        width: 100%;
    }
    .dashboard{
        display: block;
        height: auto;
    }
    .right-content-wraper{
        padding:25px 10px;
        display: inherit;
    }
    .left-menu-wraper{
        display: inherit;
        height: auto;
        border: none;
    }

    .sidebar-navigation{
        width: 100%;
    }
    .navbar-nav.navbar-sidenav {
        max-width: 100%;
        display: inline-flex;
        vertical-align: top;
        overflow-x: scroll;
        width: 100%;
        flex-wrap: nowrap;
        flex-direction: inherit;
    }
    .navbar-nav.navbar-sidenav::-webkit-scrollbar-track{
        border-radius: 50px;
        background-color: var(--border-color);
    }
    .navbar-nav.navbar-sidenav::-webkit-scrollbar{
        height: 3px;
        background-color: var(--border-color);
        border-radius: 50px;
    }
    .navbar-nav.navbar-sidenav::-webkit-scrollbar-thumb{
        border-radius: 50px;
        background-color: var(--scroll-color);
    }
    .navbar-sidenav .nav-item {
        float: left;
        width: auto;
        white-space: nowrap;

    }
    .navbar-sidenav .nav-link{
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar-sidenav .nav-link:hover{
        margin: 0;
    }
    .navbar-sidenav .active .nav-link{
        border-bottom: 2px solid var(--primary-color);
    }
    .navbar-sidenav .active .nav-link:after{
        content: none;
    }
    .video-wrapper{
        height: 40vh;
    }
    .chatbar-wrapper{
        /*width: 280px;*/
    }
    .rc-session .page-content{
        /*padding-right: 350px;*/
    }
    .video-redirect a{
        position: inherit;
        font-size: 12px;
    }
       .top-filter-wrapper ul li a {
        padding: 6px 10px;
        font-size: 12px;
    }
}
@media (min-width: 1024px) and (max-width: 1250px){
    .rc-featured-custom-header{
        height: 80vh;
    }

}
@media (min-width: 768px) and (max-width: 1200px){
    .header-right-content-wrapper{
        display: none;
    }
    #masthead .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
     .video-wrapper{
        height: 60vh;
    }
}
@media (min-width: 768px) and (max-width: 1023px){
    .rc-featured-custom-header{
        height: 70vh;
    }
    .session-thumbnail{
        width: 100%;
        margin-bottom: 10px;
    }


}
@media screen and (max-width: 767px) {
    .auth_logo img {
        width: 122px;
        height: 74px;
    }
    .auto-form-wrapper{
        width: 80%;
        padding-bottom: 0;
    }
    .option-links-wrapper a{
        font-size: 12px;
    }
    .recovery-content-wrapper {
        width:100%;
        border: none;
        padding: 0;
    }
    .bottom-meta-auth{
        position: inherit;
        padding-top: 5%;
    }

    .option-links-wrapper a:nth-child(2){
        margin: 0 6px;
    }
    .reset-wrapper{
        padding-bottom: 0;
    }

    .page-frames img{
        display: none;
    }
    .rc-session .page-content{
        position: relative;
        z-index: 9991;
        padding: inherit;
    }
    .authorbox{
        display: none;
    }
    /*.video-meta-elements{
        padding: 8px 20px;
        min-height: 50px;
    }*/
    .video-meta-elements {
        padding: 8px 20px;
        min-height: 50px;
        height: 8vh;
    }
    .video-close a {
        width: 30px;
        height: 30px;
        line-height: 37px;
    }
    .cur-time {
        /*padding: 5px 9px;*/
        width: 82px;
        height: auto;
        font-size: 11px;
    }
    .meta-time{
        font-size: 11px;
    }
    .video-wrapper{
       /* padding-bottom: 47%;
        height: auto;*/
        height: 30vh;
    }
    .video-redirect a {
        font-size: 10px;
    }
    .chatbar-wrapper .chatbar-brand{
        display: none;
    }
  /*  .chatbar-wrapper {
        width: 100%;
        padding-top: 67%;
    }*/
    .chatbar-wrapper {
        width: 100%;
        /* padding-top: 67%; */
        height: 50vh;
        top: inherit;
    }
    .no-header .chatbar-wrapper {
       /* width: 100%;
        padding-top: 58%;*/
         width: 100%;
        /* padding-top: 67%; */
        height: 55vh;
        top: inherit;
    }
    .pre-session-media .chatbar-wrapper{
        /*top: 33px;*/
        /*padding-top: 67%;*/
        padding:inherit;
         height: 51vh;
        top: inherit;
    }
    #show-chatbar{
        /*display: none;*/
    }
    .chatbar-body{
        margin: 0;
    }
    .chat-item:last-child {
        padding-bottom: 32px;
    }
    .chat-item img{
        height: 34px;
        width: 34px;
    }
    .att-user{
        height: 34px;
        width: 34px;
        font-size: 13px;
    }
    .sent-content{
        padding-bottom: 8px;
    }

    .session-inc-chat .chatbar-footer{
        padding: 0px 20px;
    }
    .timer-holder{
        left: 0;
    }
    .timer-holder .meta-time{
        border-radius: 4px;
        height: auto;
    }
    .chat-user{
        font-size: 13px;
    }

    .chat-text{
        padding-top: 0;
        font-size: 12px;
    }

    section{
        padding: 20px 0;
    }
    #rcfooter{
        padding: 10px 0;
    }
    .mb-scroll-wrapper{
        max-width: 100%;
        display: inline-flex;
        vertical-align: top;
        overflow-x: scroll;
        width: 100%;
        flex-wrap: nowrap;
    }
    .mb-scroll-item {
        min-width: 300px;
        display: inline-block;
        vertical-align: top;
        padding:10px;
    }
    .mb-scroll-wrapper::-webkit-scrollbar-track{
        border-radius: 50px;
        background-color: var(--border-color);
    }
    .mb-scroll-wrapper::-webkit-scrollbar{
        /*width: 3px;*/
        height: 3px;
        background-color: var(--border-color);
        border-radius: 50px;
    }
    .mb-scroll-wrapper::-webkit-scrollbar-thumb{
        border-radius: 50px;
        background-color: var(--scroll-color);
    }

    .user-tags > span{
        font-size: 13px;
    }
    .rc-featured-custom-header{
        height: 50vh;
    }
    .header-right-content-wrapper{
        display: none;
    }
    .plan-action-wrapper{
        text-align: left;
    }
    .featured-content-wrapper{
        padding-left: 20px;
    }
    .featured-content-wrapper .entry-title{
        font-size: 23px;
    }
    .featured-content-wrapper .entry-content,
    .featured-content-wrapper .entry-content p{
        font-size: 14px;
    }
    .featured-session-media{
        padding: 200px;
    }

    .rc-featured-session .no-padding {
        padding: 0 15px;
    }
    .section-title{
        font-size: 20px;
    }
    .section-intro .br-title{
        font-size:20px;
    }
    .section-header-wrapper{
        margin-bottom: 15px;
    }
    .rc-recent-session-list .primary-btn{
        font-size: 12px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .rc-featured-session  .slick-dotted.slick-slider{
        margin-bottom: 0;
    }
    .home-session-media, .featured-session-slider {
        margin-bottom: 0;
    }
    .dashboard-common-width{
        width: 100%;
    }

    .sidebar-navigation{
        /*width: 100%;*/
    }

    /*--profile --*/
    .user-details a.btn.primary-btn.edit-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    .section-title h2, .section-title{
        font-size: 20px;
    }
    .top-filter-wrapper{
        margin: 8px 0;
    }
    .top-filter-wrapper ul{
        margin-bottom: 15px;
    }
    .lfirst-filter,
    .lsecond-filter{
        width: 100%;
        margin-bottom: 10px;
        padding-right: 0;
    }
    .check-filter{
        margin-bottom: 10px;
    }
    .session-list-contents .form-check-inline{
        margin-right: 10px;
    }
    .coach-header-btn-wrapper {
        margin-right: 12px;
        display: flex;
    }
    .coach-header-btn-wrapper a {
        font-size: 11px;
        padding: 8px 10px;
    }
    .header-input-filters input{
        background-color: var(--color-white);
    }
    .upcomming-session-table-view .comming-session-filter-wrapper{
        display: block;
        float: inherit;
    }
    .coach-name-select, .coach-category-select, .coach-date-select{
        margin-left:0;
        margin-bottom: 10px;
    }
    .comming-session-filter-wrapper .default-select .nice-select {
        margin-bottom: 10px;
    }
    .upcomming-session-table-view ul.icons-list {
        white-space: nowrap;
    }
}
@media only screen and (max-width:640px){
    .auto-form-wrapper{
        width: 100%;
    }
    .featured-session-media{
        padding: 120px;
    }
    .feature-banner-wrapper{
        padding: 90px 0;
    }
    .top-filter-wrapper ul li a {
        padding: 6px 10px;
        font-size: 12px;
    }
    .coach-meta-center-items{
        display: block;
    }
    .coach-header-btn-wrapper{
        margin-bottom: 10px;
        justify-content: center;
    }
    .coach-header-btn-wrapper a img{
        display: none;
    }
    .single-current-item{
        margin-top: 0;
    }
}
@media screen and (max-width: 567px) {
    .featured-content-wrapper .entry-title{
        font-size: 20px;
    }
    .featured-content-wrapper .read-more a{
        margin-right: 6px;
        padding: 11px 12px;
    }
    .auto-form-wrapper{
        width: 100%;
    }
    .application-area img{
        width: 100px;
    }

}

/*--------------------------------------------------------------
# end of rc-theme styles
--------------------------------------------------------------*/



.error-icon img{
    max-width: 220px;
    margin-bottom: 20px;
}

.error-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 80vh;
}


.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
    border-color: transparent;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active:hover {
    border-color: transparent;
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}
.nav-link {

    color:   var(--text-color);
}

.nav-tabs .nav-link {

    border-bottom: 2px solid #e9e9e9;

}

.initial-choose-plan-pane .plan-alert-info-wrapper {
    border-top: none;
}

 .row-info.infp-row-top {
    border-bottom: 1px dotted #bdbdbd;
    margin-bottom: 10px;
    padding-bottom: 10px;
}



.add-card-wrapper {
    background: #f9f9f9;
    border-radius: 10px;
    margin-top: 10px;
    border: 1px solid #dedede;
    max-width: 450px;
}

.add-card-wrapper .card-head {
    background: #ffffff;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    padding: 10px 0 10px 10px;
    color: #969696;
    border-bottom: 1px solid #d6d6d6;
}

.add-card-wrapper .form-group {
    margin: 0;
}

.add-card-wrapper .card-footer {
    padding: 20px 0 10px 0;
}

.add-card-wrapper .card-body {
    padding: 40px 10px;
}

.add-card-wrapper .form-group.card-num-group {
    position: relative;
}

.add-card-wrapper img.card-ico {
    position: absolute;
    top: 15px;
    left: 15px;
}

.add-card-wrapper .form-group.card-num-group input {
    padding: 0 0 0 40px;
}

.confirmation-wrapper {
    text-align: center;
    border: 1px solid #dedede;
    padding: 40px 0;
    max-width: 450px;
    border-radius: 10px;
    margin-top: 20px;
    background: #F8F9FA;
}



.confirmation-wrapper img.card-ico {
    margin-bottom: 15px;
}




/*----------------------*/
.timer-block {
    position: absolute;
    z-index: 1;
    right: 40px;
    top: 40px;
}
.base-timer {
    position: relative;
    margin: auto;
}

.base-timer__svg {
    transform: scaleX(-1);
}

.base-timer__circle {
    fill:  rgba(0, 0, 0, 0.60);
    stroke: none;
}

.base-timer__path-elapsed {

        stroke-width: 4px;
        stroke: #777777;
}

.base-timer__path-remaining {
    stroke-width: 4px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}

.base-timer__path-remaining.green {
    color: #39b37d;
}

.base-timer__path-remaining.orange {
    color: orange;
}

.base-timer__path-remaining.red {
    color: red;
}

.base-timer__label {
    position: absolute;
    width: 140px;
    height: 140px;
    top: 0;
    display: flex;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.base-timer svg {
    width: 140px;
    height: 140px;
    display: inline-block;
    vertical-align: middle;
}

.timer-div {
    display: flex;
    padding: 0 0 0 30px;
}


.timer-div .form-group {
    margin: 0 10px 0 0;
    min-width: 100px;
}

.meta-time {

    display: flex;

    align-items: center;
}


button.btn.btn-start {
    background: #f2808d;
    color: #ffffff;
    font-weight: bold;
}

button.btn.btn-pause {
    background: #000000;
    color: #ffffff;
    padding: 0 7px 0 14px;
    font-size: 14px;
}

button.btn.btn-stop {
    background: red;
    color: #ffffff;
    font-size: 14px;
    padding: 0 6px 0 12px;
}


@media screen and (max-width: 991px) {
    .timer-div {
        position: absolute;
        bottom: -46px;
        z-index: 11;
        left: 0px;
        background: #ffffff;
        padding: 0 10px 10px 10px;
        border-radius: 0 0 9px 0;
    }
}

@media screen and (max-width: 567px) {
    .base-timer__label {
        width: 90px;
        height: 90px;
    }
    .base-timer svg {
        width: 90px;
        height: 90px;
    }
    .timer-block {
        right: 10px;
        top: 10px;
    }
    .timer-div .form-group {

        min-width: 90px;
    }
    .timer-div  .btn.primary-btn {
        max-width: 84px !important;
        padding: 0 10px 0 10px !important;
    }
}


@media screen and (max-width: 400px){
    .timer-block {
        right: 10px;
        top: 50px;
    }
}
button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: unset;
}

.video-redirect  a {
    background: var(--color-white);
    border-color: var(--success-color);
}

.video-redirect .stop{
    color: var(--success-color)!important;
}

a.stop:hover{
    color: var(--success-color)!important;
    background: var(--color-white)!important;
}

.video-redirect  a:hover {
    background: var(--success-color);
    color: var(--color-white);
    border-color: var(--success-color);
}

.r-content {

    font-weight: bold;
}

.plan-contentdetail-wrapper.dashboard-common-width li.nav-item a.nav-link {
    cursor: none;
}

.end-session {
    background: var(--close-bg)!important;
    color: var(--color-white)!important;
    border: 1px solid var(--color-white)!important;
}
.end-session  a:hover {
    background: var(--close-bg)!important;
    color: var(--color-white)!important;
    border: 1px solid var(--color-white)!important;
}

.contact-form-row-wrapper{
    max-width: 600px;
    margin: 0 auto;

}

.single-list-item a.view-detail {
    width: 100%;
    position: absolute;
    height: 100%;
    display: block !important;
    top: 0;
    cursor: pointer;
    z-index: 2;
}
