@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&display=swap');

@font-face {
    font-family: 'Open Sans';
    src: url('/themes/frontend/css/fonts/subset-OpenSans-Bold.woff2') format('woff2'),
        url('/themes/frontend/css/fonts/subset-OpenSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/themes/frontend/css/fonts/subset-OpenSans-SemiBold.woff2') format('woff2'),
        url('/themes/frontend/css/fonts/subset-OpenSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/themes/frontend/css/fonts/subset-OpenSans-LightItalic.woff2') format('woff2'),
        url('/themes/frontend/css/fonts/subset-OpenSans-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/themes/frontend/css/fonts/subset-OpenSans-Light.woff2') format('woff2'),
        url('/themes/frontend/css/fonts/subset-OpenSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/themes/frontend/css/fonts/subset-OpenSans-Regular.woff2') format('woff2'),
        url('/themes/frontend/css/fonts/subset-OpenSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rye';
    src: url('/themes/frontend/css/fonts/subset-Rye-Regular.woff2') format('woff2'),
        url('/themes/frontend/css/fonts/subset-Rye-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body,h1,h2,h3,h4,h5,h6,p,a,span,label,input,li,ul,ol,div{
    font-family: 'Work Sans', sans-serif;
}

body{
    margin: 0;
    padding: 0;
}

::selection {
  background: #D6B47F; /* WebKit/Blink Browsers */
  color: #fff;
}
::-moz-selection {
  background: #D6B47F; /* Gecko Browsers */
  color: #fff;
}

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


div:focus{
	outline: none !important;
}

a{
	transition: all 0.25s;
}

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

.bg{
	background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.clear{
    clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: 'Rye';
}

h1{
    font-size: 60px;
    line-height: 60px;
}

h2{
    font-size: 60px;
}

h3 span{
    font-family: 'Rye';
    color: #D6B47F;
}

.bl{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.br{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.bc{
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

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

.ml{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* BUTTONS */

.btn-primary{
    background: transparent;
    border: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    font-weight: bold;
    padding: 6px 25px;
    position: relative;
    text-transform: uppercase;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.btn-primary:before{
    border: 1px solid #fff;
    content: '';
    transition: all 0.25s;
    display: block;
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    left: -5px;
    top: 4px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active{
    background: #D6B47F;
    color: #FFF;
    border: 1px solid #D6B47F;
}

.btn-primary:focus,
.btn-primary:active{
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgb(214 180 127 / 50%);
}

.btn-primary:hover:before,
.btn-primary:focus:before{
    border: 1px solid transparent;
    top:0;
    left: 0;
}

.btn-secondary{
    background: #191919;
    border: 2px solid #D6B47F;
    border-radius: 0;
    color: #D6B47F;
}

.btn-secondary:hover,
.btn-secondary:focus{
    background: #fff;
    color: #D6B47F;
    border: 2px solid #D6B47F;
}

.formBtnPrimary{
    color: #D6B47F;
    border-color: #D6B47F;
}

.formBtnPrimary:before{
    border-color: #D6B47F;
}

/* HOMEPAGE NAV */

#homepageMenu ul.menu,
#homepageMenu ul.social{
    padding: 0;
    margin: 0;
}

#homepageMenu ul.menu>li{
    list-style: none;
    line-height: 2.5;
    transition: all 0.25s;
    width: fit-content;
}

#homepageMenu ul.menu>li.navItem:before{
    background-image: url(/../themes/frontend/images/razoricon.svg);
    background-size: 22px 22px;
    background-repeat: no-repeat;
    height: 22px;
    width: 22px;
    display: inline-block;
    content: "";
    position: absolute;
    margin: 10px 0 0 -55px; 
    transition: all 0.25s;
    opacity: 0;
}

#homepageMenu ul.menu>li.navItem.skinCity:before{
    background-image: url(/../themes/frontend/images/skincitydrop.svg) !important;
}

#homepageMenu ul.menu>li.navItem:hover{
    padding-left: 27px;
}

#homepageMenu ul.menu>li.navItem:hover:before{
    margin-left: -27px;
    opacity: 1;
}

#homepageMenu ul.menu>li>a{
    color: rgba(255,255,255,0.7);
    transition: all 0.25s;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
}

#homepageMenu ul.menu>li>a:hover{
    color: rgba(255,255,255,1);
}

#homepageMenu ul.menu>li.checkinBtn a,
#homepageMenu ul.menu>li.langLink a{
    color: #fff;
}

#homepageMenu ul.menu>li.langLink img{
    max-height: 20px;
    margin: -3px 0 0 8px;
}

#homepageMenu ul.social>li{
    list-style: none;
    display: inline-block;
    margin-left: 15px;
}

#homepageMenu ul.social>li a{
    color: #D6B47F;
    transition: all 0.25s;
}

#homepageMenu ul.social>li a:hover{
    color: #fff;
}



/* SUBPAGE NAV */


/* FOOTER */

footer{
    background: #D6B47F;
    padding: 30px 0;
}

footer ul{
    margin: 0;
    padding: 0;
}

footer ul>li{
    display: inline;
    margin-right: 15px;
}

footer ul>li:last-child{
    margin-right: 0;
}

footer a{
    color: #fff;
}

footer a:hover{
    color: #191919;
}

/* HOMEPAGE */

#homepageMenu {
    height: 100vh;
    min-height: 600px;
    padding-top: 80px;
    background-size: cover !important;
    background-repeat: none !important;
    background-position: bottom center !important;
    position: relative;
}

#homepageMenu video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#homepageMenu .layer {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.2) 0%, rgba(25, 25, 25, 0.6) 85%, rgba(25, 25, 25, 1) 100%);
    z-index: 0;
}

#homepageMenu .homepageLogo{
    width: 170px;
}

#homepageMenu .bl{
    height: calc(100vh - 350px);
}

/* RESERV */

#reserv{
    padding: 100px 0;
    background: #191919;
}

#reserv .buttons,
#reserv .col-12.text-center.mt-5 {
    display: flex;
    justify-content: center;
    align-items: center;
}

#reserv .btn-primary{
    background: #D6B47F;
    border: 2px solid #D6B47F;
    margin-left: 15px;
    margin-right: 0;
}

#reserv .btn-primary:before{
    border: none;
}

#reserv #navigation ul{
    position: relative;
    z-index: 1;
}

#reserv #navigation ul>li{
    display: inline-block;
    margin-right: 55px;
}

#reserv #navigation ul>li a{
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 15px;
    background: #191919;
    width: 52px;
    height: 52px;
}

#reserv #navigation ul>li.active a{
    background: #D6B47F;
    border: 1px solid #D6B47F;
    padding: 15px;
    color: #191919;
    position: relative;
}

#reserv #navigation ul>li.active a:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #D6B47F;
    top: -4px;
    left: 4px;
    z-index: -1;
}

#reserv #navigation ul>li:last-child{
    margin-right: 0;
}

#reserv #navigation .line{
    width: 500px;
    border-bottom: 1px solid #fff;
    position: absolute;
    left: 50%;
    margin: 10px 0 0 -230px;
    z-index: 0;
}

#reserv p{
    color:#fff;
}

#reserv h2{
    color: #fff;
}

#reserv #choiceLocation .bg{
    height: 370px;
}

#reserv #choiceLocation .bg .layer{
    height: 370px;
    background: rgba(0,0,0,0.5);
    transition: all 0.25s;
    border: 1px solid transparent;
    position: relative;
}

#reserv #choiceLocation .bg .layer:hover{
    background: rgba(0,0,0,0);
    border: 1px solid #fff;
}

#reserv #choiceLocation .bg .layer:before{
    position: absolute;
    height: calc(100% + 2px);
    width: calc(100% + 2px);
    content: '';
    border: 1px solid transparent;
    transition: all 0.25s;
}

#reserv #choiceLocation .bg .layer:hover:before{
    margin-left: -14px;
    margin-top: 14px;
    border: 1px solid #fff;
}

#reserv #choiceDay table,
#reserv #choiceDay table thead,
#reserv #choiceDay table thead td{
    border: 1px solid #D6B47F !important;
}

#reserv #choiceDay table td{
    color: #fff;
    padding: 0;
    width: 14%;
    height: 75px;
    vertical-align: middle;
    border: 1px solid #333;
}

#reserv #choiceDay table td.inactive{
    border: 1px solid #D6B47F !important;
}


#reserv #choiceDay table td a{
    display:inline-block;
    width: 100%;
    background: #D6B47F;
    color: #fff;
    font-weight: bold;
    padding-top: 25px;
    padding-bottom: 25px;
    transition: all 0.25s;
}

#reserv #choiceDay table td a:hover{
    color: #D6B47F;
    background: #fff;
}

#reserv #choiceDay table thead td{
    font-weight: bold;
    color: #D6B47F;
}

.barberItem .barberPhoto{
    width: 150px;
    height: 150px;
    border-radius: 75px;
}

.barberItem p.name{
    font-weight: bold;
    margin-bottom:0;
    color: #D6B47F;
}

#reserv #choiceBarber .barberItem p.barberClass{
    font-weight: bold;
    background: #D6B47F;
    margin-bottom:0;
}

#reserv #choiceBarber .barberItem p.extraLocation{
    font-weight: bold;
    margin-bottom:0;
    color: #D6B47F;
    color: #fff;
    font-size: 14px;
}

#reserv #choiceBarber .barberItem .simplePayImg{
    width: 40px;
    height: 40px;
    position: absolute;
    right: 10px;
    border: 2px solid #D6B47F;
    border-radius: 50px;
}

#reserv #choiceBarber .barberItem .simplePayImg.creditCard{
    background: #D6B47F;
    color:#fff;
    display: none;
}

#reserv #choiceService ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

#reserv .checkbox-animated {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}

#reserv .checkbox-animated input[type=checkbox] {
    display: none;
}

#reserv .checkbox-animated input[type=checkbox]:disabled ~ label .box {
    border-color: #777;
    background-color: #E6E6E6;
}

#reserv .checkbox-animated input[type=checkbox]:disabled ~ label .check {
    border-color: #777;
}

#reserv .checkbox-animated input[type=checkbox]:checked ~ label .box {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-180deg);
    -moz-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
}

#reserv .checkbox-animated input[type=checkbox]:checked ~ label .check {
    opacity: 1;
    -webkit-transform: scale(1) rotate(45deg);
    -moz-transform: scale(1) rotate(45deg);
    transform: scale(1) rotate(45deg);
}

#reserv .checkbox-animated label {
    cursor: pointer;
    padding-left: 30px;
    font-weight: normal;
    margin-bottom: 0;
    color: #fff;
}

#reserv .checkbox-animated label span {
    display: block;
    position: absolute;
    left: 0;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

#reserv .checkbox-animated label .box {
    border: 2px solid #FFF;
    height: 20px;
    width: 20px;
    z-index: 888;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#reserv .checkbox-animated label .check {
    top: -7px;
    left: 6px;
    width: 12px;
    height: 24px;
    border: 2px solid #D6B47F;
    border-top: none;
    border-left: none;
    opacity: 0;
    z-index: 888;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#finishForm .checkbox-animated label .check{
    top: 0;
}

#reserv .checkbox-animated-inline {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}

#reserv .checkbox-animated-inline input[type=checkbox] {
    display: none;
}

#reserv .checkbox-animated-inline input[type=checkbox]:disabled ~ label .box {
    border-color: #777;
    background-color: #E6E6E6;
}

#reserv .checkbox-animated-inline input[type=checkbox]:disabled ~ label .check {
    border-color: #777;
}

#reserv .checkbox-animated-inline input[type=checkbox]:checked ~ label .box {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-180deg);
    -moz-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
}

#reserv .checkbox-animated-inline input[type=checkbox]:checked ~ label .check {
    opacity: 1;
    -webkit-transform: scale(1) rotate(45deg);
    -moz-transform: scale(1) rotate(45deg);
    transform: scale(1) rotate(45deg);
}

#reserv .checkbox-animated-inline label {
    cursor: pointer;
    padding-left: 28px;
    font-weight: normal;
    margin-bottom: 0;
}

#reserv .checkbox-animated-inline label span {
    display: block;
    position: absolute;
    left: 0;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

#reserv .checkbox-animated-inline label .box {
    border: 2px solid #000;
    height: 20px;
    width: 20px;
    z-index: 888;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#reserv .checkbox-animated-inline label .check {
    top: -7px;
    left: 6px;
    width: 12px;
    height: 24px;
    border: 2px solid #BADA55;
    border-top: none;
    border-left: none;
    opacity: 0;
    z-index: 888;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

#reserv .checkbox-animated-inline.checkbox-animated-inline {
    display: inline-block;
}

#reserv .checkbox-animated-inline.checkbox-animated-inline + .checkbox-animated-inline {
    margin-left: 10px;
}
  
#reserv #choiceService .serviceList,
#reserv #choiceTime .timeList{
    display: flex;
    align-items: center;
    justify-content: center;
}

#reserv #choiceTime .timeList ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

#reserv #choiceTime .timeList .timeSlider .swiper-slide{
    width: 100% !important;
}

#reserv #choiceTime .timeList .nextDay{
    position: absolute;
    color: #D6B47F !important;
    z-index: 21;
    right: 50px;
    top: 50%;
    cursor: pointer;
}

#reserv #choiceTime .timeList .prevDay{
    position: absolute;
    color: #D6B47F !important;
    z-index: 21;
    left: 50px;
    top: 50%;
    cursor: pointer;
}

#reserv #choiceTime .timeList ul>li.reserved{
    color: #D6B47F;
    text-decoration: line-through;
}

#reserv #choiceTime .timeList ul>li a{
    color: #fff;
    font-weight: bold;
}

#reserv #choiceTime .timeList ul>li a:hover{
    color: #fff;
}

#reserv #finishForm .form-control{
    background: #191919;
    color: #fff;
    font-weight: bold;
    border-radius: 0;
    border: 1px solid #fff;
}

#reserv #finishForm .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}
  
#reserv #finishForm .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}
  
#reserv #finishForm .form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}

#reserv #finishForm h3,
#reserv #finishForm td{
    color: #fff;
    border-top: none;
}

#reserv #finishForm td{
    padding-top: 5px;
    padding-bottom: 5px;
}

#reserv #finishForm .checkbox-animated label{
    top: 21px;
}

#reserv.barberReserv{
    padding: 30px;
}

#reserv.barberReserv #navigation .line{
    width: 100%;
    position: relative;
    margin: 27px 0 -13px;
    left: 0;
}

#reserv.barberReserv #navigation ul{
    padding: 0;
}

#reserv.barberReserv #navigation ul li{
    width: 24%;
    margin: 0;
}
/* HOMEPAGE ABOUT US */

#aboutus{
    padding: 100px 0;
}

/* PRICELIST */

#pricelist{
    padding: 80px 0;
    background: #F2F2F2;
}

#pricelist .nav-pills .nav-link{
    border: 1px solid #1D1D1B;
    border-radius: 0;
    color:#1D1D1B;
    margin-right: 15px;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

#pricelist .nav-pills .nav-link:before{
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid #1D1D1B; 
    display: block;
    content: '';
    left: -5px;
    top: 4px;
}

#pricelist .nav-pills .nav-link.active{
    border: 1px solid #D6B47F;
    background: #D6B47F;
    color: #fff;
    
}

#pricelist .nav-pills .nav-link.active:before{
    background: #D6B47F;
    border: 1px solid #D6B47F;
    z-index: -1;
}

#pricelist .nav-pills .nav-item:last-child .nav-link{
    margin-right: 0;
}

#pricelist .left{
    border-right: 1px solid #D6B47F;
    padding-right: 50px;
}

#pricelist .right{
    padding-left: 50px;
}

#pricelist .item a{
    color: #1D1D1B;
}

#pricelist .item a:hover,
#pricelist .item a:focus{
    color: #D6B47F;
}

#pricelist .item p{
    color: #808080;
    margin-bottom: 5px;
}

#pricelist .item .description p{
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 0;
}

/* BLOGLIST */

#bloglist{
    background: #1A1A1A;
    padding: 100px 0;
}

#bloglist h2{
    color: #fff;
    margin-bottom: 100px;
}

#bloglist .item:nth-child(2){
    margin-top: 50px;
}

.blogListPage .item:nth-child(2){
    margin-top: 0 !important;
}

#bloglist .item .inner{
    height: 250px;
    opacity: 0.5;
    transition: all 0.25s;
    border: 1px solid transparent;
    position: relative;
}

#bloglist .item .inner:hover{
    opacity: 1;
    border: 1px solid #fff;
}

#bloglist .item .inner:before{
    display: block;
    position: absolute;
    content: '';
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid transparent;
    left: 0;
    top: 0;
    transition: all 0.25s;
}

#bloglist .item .inner:hover:before{
    left: -7px;
    top: 5px;
    border: 1px solid #fff;
}

#bloglist .item .inner a{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
    font-size: 22px;
    position: relative;
    z-index: 3;
}

#theBest{
    padding: 100px 0 140px;
}

#theBest h2,
#theBest p{
    color: #fff;
}

/* BARBER LIST */

#barberList{
    padding: 100px 0 0;
}

#barberList .navs{
    font-size: 50px;
    cursor: pointer;
    color: #D6B47F;
    position: absolute;
    margin-top: -300px;
    z-index: 21;
    opacity: 0;
    transition: all 0.25s;
}

#barberList .sliderdiv:hover .navs{
    opacity: 1;
}

#barberList .next{
    right: -50px;
}

#barberList .prev{
    left: -50px;
}

#barberList .item{
    padding-bottom: 50px;
}

#barberList .item .image{
    height: 250px;
    margin-bottom: 20px;
    background-position: center 0 !important;
}

#barberList .item p.name{
    font-size: 30px;
    font-weight: bold;
    color: #D6B47F;
    transition: all 0.25s;
    margin-bottom: 0;
}

#barberList .item p.description{
    font-size: 12px;
    opacity: 0;
    transition: all 0.25s;
}

#barberList .item .separator{
    width: 50px;
    margin: 10px auto 20px;
    border-bottom: 2px solid #D6B47F;
    opacity: 0;
    transition: all 0.25s;
}

#barberList .item .btn{
    opacity: 0;
    transition: all 0.25s;
}

#barberList .btn-primary{
    border: 1px solid #1D1D1B;
    color: #1D1D1B;
}

#barberList .btn-primary:before{
    border: 1px solid #1D1D1B;
}

#barberList .btn-primary:hover,
#barberList .btn-primary:focus,
#barberList .btn-primary:active{
    color: #fff !important;
    background: #D6B47F !important;
    border-color: #D6B47F !important;
}

#barberList .btn-primary:hover:before{
    border-color: transparent;
}

#barberList .item:hover p.name{
    color: #191919;
    margin-top: -10px;
}

#barberList .item:hover .btn,
#barberList .item:hover .separator,
#barberList .item:hover .description{
    opacity: 1;
}

#barberList .item .barberLayer{
    margin-top: 250px;
    opacity: 0;
    transition: all 0.25s;
    width: calc(100% + 10px);
    margin-left: 0px;
}

#barberList .item:hover .barberLayer{
    margin-top: 200px;
    opacity: 1;
}

#barberList p.barberOfMounthLabel{
    background: rgba(214, 180, 127, 0.8);
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    width: 100%;
    top: 0;
}

#barberList p.barberClassName{
    color: #333;
    font-weight: bold;
    top: 226px;
    padding-left: 8px;
    padding-right: 8px;
}

#barberList .item:hover p.barberClassName{
    color: #D6B47F;
    transition: all 0.25s;
}

#barberList .item .simplePayImg{
    height: 40px;
    width: 40px;
    top: 10px;
    right: 25px;
    position: absolute;
}


*, ::after, ::before {
    box-sizing: border-box;
}

#workUs{
    padding: 100px 0;
}

#workUs h2{
    margin-bottom: 50px;
}

#workUs p{
    color: #fff;
}

#workUs .btn-primary:hover,
#workUs .btn-primary:focus{
    background: #fff;
    color: #D6B47F;
}
#ourBestPartner{
    padding: 100px 0 0;
}

#ourBestPartner h2{
    color: #fff;
}

#ourBestPartner .btn-primary{
    border-color: #1D1D1B;
    color: #1D1D1B;
}

#ourBestPartner .btn-primary:before{
    border-color: #1D1D1B;
}

#ourBestPartner .btn-primary:hover,
#ourBestPartner .btn-primary:hover:before{
    border-color: transparent;
    color: #fff;
}

#ourBestPartner .imageDiv{
    height: 500px;
}

#ourBestPartner .imageDiv .layer{
    background: rgba(0,0,0,0.3);
    height: 100%;
    width: 100%;
}

#ourBestPartner .imageDiv .inner{
    background: rgba(214, 180, 127, 0.6);
    padding: 40px;
}

#barberOfTheMounth{
    background: #D6B47F;
    padding: 100px 0;
}

#barberOfTheMounth h3{
    color: #fff;
}

#barberOfTheMounth .btn-primary,
#barberOfTheMounth .btn-primary:before{
    border: 1px solid #333;
    color: #333;
}

#barberOfTheMounth .image{
    height: 500px;
    position: relative;
}

#barberOfTheMounth .image:after{
    position: absolute;
    height: 100%;
    width: 100%;
    border: 1px solid #fff;
    content: "";
    top: 8px;
    left: -8px;
}

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

ul.barberStars li{
    display: inline;
}

#barberOfTheMounth .barberStars li{
    color: #fff;
}

#giftCard{
    padding: 100px 0;
}

#bsbsMember{
    background: #D6B47F;
    padding: 100px 0;
}

#bsbsMember .form-control{
    border: none;
    border-radius: 0;   
}

#bsbsMember .btn-primary:hover,
#bsbsMember .btn-primary:focus{
    background: #fff;
    color: #D6B47F;
}

#contact{
    padding: 100px 0;
}

#contact .item{
    border: 1px solid #333;
    padding: 50px 30px 0;
    position: relative;
    z-index: 1;
}

#contact .item:before{
    content: '';
    display: block;
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid #333;
    left: -7px;
    top: 5px;
    z-index: -1;
}

#contact h3{
    color: #D6B47F;
}

#contact p{
    color: #333;
}


#contact iframe{
    height: 200px;
    width: calc(100% + 54px);
    margin-left: -30px;
    margin-bottom: -23px;
}

#contact .contactLogo{
    max-width: 250px;
}

#contact h2{
    color: #333;
}

#contact .form-control{
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #333;
    color: #333;
    box-shadow: none;
    background: transparent;
}

#contact .form-control:focus{
    box-shadow: none !important;
}

#contact .btn-primary{
    color: #D6B47F;
    border: 1px solid #D6B47F;
}

#contact .btn-primary:hover,
#contact .btn-primary:focus{
    color: #fff;
}

#contact .btn-primary:before{
    border: 1px solid #D6B47F;
}

#contact .item a{
    color: #D6B47F;
}

#giftCard .giftCardItem{
    position: relative;
    background: #333;
}

#giftCard .giftCardItem img{
    max-height: 150px;
    transition: all 0.25s;
}

#giftCard .giftCardItem h3{
    color: #fff;
    margin-bottom: 0;
}

#giftCard .giftCardItem p{
    color: #D6B47F;
}

#giftCard .giftCardItem.masterItem{
    background: #D6B47F;
}

#giftCard .giftCardItem.masterItem p{
    color: #333;
}

#giftCard .giftCardItem:hover img{
    transform: scale(1.1)
}


/* SUBPAGES */

header .navbar .navbar-brand,
header .navbar .navbar-toggler{
    z-index: 99;
}

header .navbar .navbar-toggler:focus{
    outline: none !important;
    border: none !important;
}

header .navbar .navbar-brand img{
    max-width: 100px;
}


header .navbar .fa-bars{
    color: #fff;
}

header .navbar .navbar-collapse,
header .navbar{
    background: #191919;
}

header .navbar .navbar-collapse .navbar-nav{
    padding: 50px 0;
}

header .navbar .fa-bars:hover,
header .navbar .fa-bars:focus{
    color: #D6B47F;
}


header .navbar ul.navbar-nav>li{
    list-style: none;
    line-height: 2.5;
    transition: all 0.25s;
}


header .navbar ul.navbar-nav>li.nav-item:before{
    background-image: url(/../themes/frontend/images/razoricon.svg);
    background-size: 22px 22px;
    background-repeat: no-repeat;
    height: 22px;
    width: 22px;
    display: inline-block;
    content: "";
    position: absolute;
    margin: 18px 0 0 -55px;
    transition: all 0.25s;
    opacity: 0;
}

header .navbar ul.navbar-nav>li.nav-item:hover{
    padding-left: 27px;
}

header .navbar ul.navbar-nav>li.nav-item:hover:before{
    margin-left: -27px;
    opacity: 1;
}

header .navbar ul.navbar-nav>li a{
    color: rgba(255,255,255,0.7);
    transition: all 0.25s;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
}

header .navbar ul.navbar-nav>li a:hover{
    color: rgba(255,255,255,1);
}

#homepageMenu ul.menu>li.checkinBtn a,
#homepageMenu ul.menu>li.langLink a{
    color: #fff;
}

#homepageMenu ul.menu>li.checkinBtn a.btn-primary{
    background: #D6B47F;
    border: none !important;
}

#homepageMenu ul.menu>li.checkinBtn a.btn-primary:before{
    content: none !important;
    border: none !important;
}

#homepageMenu ul.menu>li.checkinBtn a.btn-primary:hover,
#homepageMenu ul.menu>li.checkinBtn a.btn-primary:focus{
box-shadow: 0 0 0 0.2rem rgb(214 180 127 / 50%);
}

#subpageheader{
    padding: 50px 0;
    margin-top: 124px;
}

#subpageheader img{
    max-width: 170px;
}

#subpageheader h1{
    font-size: 60px;
    text-transform: uppercase;
    font-family: 'Rye';
    color: #fff;
}

#subpageheader h1.subpageHead{
    text-transform: uppercase;
    font-family: 'Rye';
    color: #fff;
    font-size: 60px;
}

#subpageheader h2{
    margin-top: 100px;
    color: #fff;
}

#subpageheader .fa-bars{
    color: #fff;
    margin-top: 50px;
}

#barberAbout{
    background: #D6B47F;
    padding: 100px 0;
    margin-top: 120px;
}

#barberAbout h1.name{
    color: #fff;
    font-family: 'Rye';
    font-size: 65px;
}

#barberAbout .head p{
    font-weight: bold;
    font-size: 19px;
}

#barberAbout .barberImgSide{
    background: #D6B47F;
}

#barberAbout .bigImage{
    height: 500px;
    position: relative;
}

#barberAbout .bigImage:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
    top: 7px;
    left: -8px;
}

#barberAbout .qrPic{
    width: 200px;
    margin-bottom: -100px;
    z-index: 3;
    position: relative;
}

#barberAbout h1{
    font-size: 24px;
    font-weight: bold;
    font-family: 'Open Sans';
}

#barberAbout h2{
    font-size: 20px;
    line-height: 24px;
    font-family: 'Open Sans';
    color: #fff;
    font-weight: bold;
}


#barberAbout h3{
    font-family: 'Open Sans';
    margin-bottom: 40px;
}

#barberAbout strong{
    color: #fff;
}

#barberAbout .barberNavIcons{
    padding: 0;
    margin: 30px 0 0 0;
}

#barberAbout .barberNavIcons li{
    list-style: none;
    margin-bottom: 30px;
}

#barberAbout .barberNavIcons li i{
    margin-right: 8px;
}

#barberAbout .barberNavIcons li a{
    width: 100%;
}

#barberAbout .barberNavIcons li a:before{
    top: 2px;
    left: -4px;
}

#barberAbout .barberNavIcons li a,
#barberAbout .barberNavIcons li a:before{
    border-color: #333;
}

#barberAbout .barberNavIcons li:hover a:before{
    border-color: transparent;
}

#barberAbout .barberNavIcons li a.btn-primary{
    padding: 6px 14px !important;
}

#barberAbout ul.barberStars li{
    color: #fff !important;
    font-size: 17px;
}

#barberAbout .fa-star,
#barberAbout .fa-star-half-alt{
    color: #fff;
}

#barberAbout .simplePayImg{
    height: 80px;
    width: 80px;
    border-radius: 40px;
    position: absolute;
    z-index: 99;
    right: 30px;
    top: 15px;
}

.barberpageHeader{
    padding-top: 100px !important;
}

#separatorDiv{
    padding: 100px 0 90px;
}

#barberGallery{
    padding: 100px 0;
    background: #F2F2F2;
}

#barberGallery .images .inner{
    height: 250px;
    position: relative;
}

#barberGallery .images .inner .layer{
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0,0,0,.5);
    opacity: 0;
    transition: all .25s;
}

#barberGallery .images .inner .layer i{
    color: #D6B47F;
}

#barberGallery .images .inner .layer:hover{
    opacity: 1;
}

#barberGallery .nav-link{
    border: 1px solid #D6B47F;
    border-radius: 0;
    color: #191919;
    margin-right: 15px;
}

#barberGallery .nav-item:last-child .nav-link{
    margin-right: 0;
}

#barberGallery .nav-link.active{
    color: #fff;
    background: #D6B47F;    
}

.vbox-container img {
    width: auto;
    height: 90vh;
}

#barberVideos{
    padding: 100px 0;
    background: #D6B47F;    
}

#barberVideos .nav{
    padding: 8px 15px;
    border: 1px solid #191919;
    display: inline;
    margin-top: 15px;
    position: absolute;
    cursor: pointer;
    color: #191919;
}

#barberVideos .next{
    right: 15px;
}

/* Static Page */

#staticPageContent{
    padding: 100px 0;
    min-height: calc(100vh - 500px);
}

#staticPageContent.barberStatic{
    min-height: auto;
}

#staticPageContent.barberStatic h1{
    font-size: 25px;
    margin: 0;
    text-align: center;
}

#staticPageContent h2{
    font-size: 25px;
    color: #D6B47F;
    margin: 35px 0 15px;
}


#staticPageContent h3{
    font-size: 18px;
    font-weight: bold;
    font-family: 'Open Sans';
}

#staticPageContent p,
#staticPageContent p span{
    color: #333 !important;
}

#staticPageContent p a{
    color: #D6B47F;
    font-weight: bold;
}

#staticPageContent .btn-primary{
	background: #D6B47F !important;
	color: #fff;
	border-color: #D6B47F;
}

#staticPageContent .btn-primary:before{
	border: none;
}

#staticPageContent .barberNavIcons{
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}

#staticPageContent .barberNavIcons li{
    margin-bottom: 20px;
}

#shortDesc{
    padding: 100px 0;
    background: #D6B47F;
}

#shortDesc p{
    font-weight: bold;
}

/* MODALS */

.modal-content,
.modal-header,
.modal-body,
.modal-footer{
    border: none;
}

.modal-header,
.modal-body,
.modal-footer{
    background: #333 !important;
}

.modal-header h5{
    color:#fff;
}

.modal-body p{
    color: #D6B47F !important;
}

.modal-body .barberItem a p.name{
    color: #fff !important;
}

.modal-body .barberItem .barberPhoto{
    margin: 0 auto;
}

.modal .bootbox-body{
    color: #fff;
}

.modal .btn-primary{
	border: 2px solid #D6B47F ;
	background: #D6B47F ;
	color: #fff;
}

.modal .btn-primary:before{
	border: none;
}

button.close{
    color: #fff;
}

@media (max-width: 767px){
    #aboutus,
    #bloglist,
    #pricelist,
    #reserv,
    #ourBestPartner,
    #giftCard,
    #staticPageContent{
        padding: 50px 0;
    }

    .navbar .container {
        padding: 0;
    } 
    
    #workUs .mc{
        height: auto;
        padding: 40px 15px 50px;
    }

    h2 {
        font-size: 35px;
        line-height: 38px;
    }
    
    #bloglist h2{
        margin-bottom: 30px !important;
    }

    #bloglist .item .inner {
        opacity: 1;
    }

    #bloglist .item .inner a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #00000055;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #subpageheader h1.subpageHead{
        margin-top: 70px;
        font-size: 28px;
        line-height: 38px;
    }

    #subpageheader {
        margin-top: 70px;
    }

    header .navbar .navbar-brand img{
        height: 50px;
    }

    header .navbar .navbar-collapse .navbar-nav{
        padding: 0;
    }

    #homepageMenu{
        text-align: center !important;
        padding-top: 30px;
        height: auto;
    }

    #homepageMenu ul.menu{
        width: 100%;
        margin-top: 15px;
    }

    #homepageMenu .bl,
    #homepageMenu .br{
        display: block;
        align-items: center;
        justify-content: center;
        height: auto;
    }

    #homepageMenu ul.social{
        margin-top: 30px;
    }

    #homepageMenu ul.social li:first-child{
        margin-left: 0;
    }

    #reserv{
        padding: 50px 0;
    }

    #reserv h2{
        font-size: 25px;
    }

    #reserv #navigation .line{
        width: 100%;
        left: 0;
        margin: 16px 0 0;
    }

    #reserv #navigation ul{
        padding: 0;
    }

    #reserv #navigation ul>li{
        margin-right: 10px;
        line-height: 2;
    }

    #reserv #navigation ul>li.mt-5{
        margin-top: 0 !important;
    }

    #reserv #navigation ul>li a{
        padding: 5px;
    }

    #reserv #navigation ul>li.active a{
        padding: 5px;
    }
    #reserv #choiceLocation .bg,
    #reserv #choiceLocation .bg .layer{
        height: 200px;
    }

    #reserv #choiceLocation .bg{
        margin-bottom: 30px;
    }

    #aboutus .pl-5{
        padding-left: 15px !important;
    }

    #pricelist .left{
        border: none;
        padding-right: 15px;
    }

    #pricelist .right{
        padding-left: 15px;
    }

    #pricelist .tab-pane {
        padding: 0;
    }

    #pricelist .description p{
        font-size: 11px;
    }

    #barberList .navs{
        display: none;
    }

    #barberList .item .separator,
    #barberList .item p.description,
    #barberList .item .barberLayer,
    #barberList .item .btn{
        opacity: 1;
    }

    #barberList .item .image{
        height: 340px;
    }

    #barberList .item .barberLayer,
    #barberList .item:hover .barberLayer{
        margin-top: 290px;
    }

    #bloglist .item{
        margin-bottom: 30px;
    }

    #bloglist .item:nth-child(2){
        margin-top: 0;
    }

    #bloglist .btn-primary{
        margin-top: 0 !important;
    }

    #workUs .btn{
        font-size: 24px;
        line-height: 34px;
    }

    #ourBestPartner{
        text-align: center;
    }

    #ourBestPartner .mc{
        margin-bottom: 30px;
    }

    #ourBestPartner .imageDiv {
        height: 300px;
    }

    #contact .item{
        margin-left: 18px;
    }

    #contact .pl-5{
        padding-left: 15px !important;
        text-align: center;
    }

    footer ul>li{
        display: block;
        margin: 0;
        text-align: center;
    }

    footer .text-right{
        text-align: center !important;
        margin-top: 30px;
    }

    .barberItem .barberPhoto{
        margin: 0 auto;
    }

    #reserv #choiceBarber .barberItem .simplePayImg{
        margin: 0 auto;
        left: 105px;
    }

    #barberAbout{
        margin-top: 76px;
        padding: 50px 0;
    }

    #barberAbout .pr-5{
        padding-right: 15px !important;
    }

    #barberAbout .pl-5{
        margin-top: 120px;
        padding-left: 15px !important;
    }

    #barberAbout h1.name{
        font-size: 40px;
    }

    #reserv.barberReserv #navigation ul li{
        width: 23%;
    }

    #giftCard h2{
        font-size: 27px;
        line-height: 30px;
    }

    #giftCard .mb-5{
        margin-bottom: 0 !important;
    }

    #staticPageContent{
        min-height: auto;
    }

    #bsbsMember h2{
        margin-bottom: 50px;
    }

    .vbox-container img {
        height: auto;
    }

}

@media (min-width: 768px) and (max-width: 992px){
    #bloglist .item .inner {
        opacity: 1;
    }

    #bloglist .item .inner a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #00000055;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #barberList .item .image {
        height: 350px;
        max-width: 500px;
        margin: 20px auto;
    }

    #barberList .item p.description {
        opacity: 1;
    }

    #barberList .item .btn {
        opacity: 1;
    }
}

@media (min-width: 993px) and (max-width: 1200px){
    #bloglist .item .inner {
        opacity: 1;
    }

    #bloglist .item .inner a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #00000055;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #barberList .item .image {
        height: 350px;
        max-width: 500px;
        margin: 20px auto;
    }

    #barberList .item p.description {
        opacity: 1;
    }

    #barberList .item .btn {
        opacity: 1;
    }
}

@media (min-width: 1201px) and (max-width: 1366px){
    
}

@media (min-width: 1367px){
  
}

#npl-table img {min-width:111px;padding:10px;}
