/*------------------------------------------------------------------
[Master Stylesheet]

[Table of contents]

    1. Base
        1.1. Owl Carousel controllers
        1.2. Heading
        1.3 Paddings
            1.3.1 Padding top
            1.3.2 Padding bottom 
        1.4 Buttons
        1.5 Input style
    2 Header
        2.1 Navigation / .navigation
        2.2 Search module / .search-module
        2.3 Mobile side / .mobile-side
    3 Body
        3.1 Social link / .social-link
        3.2 Contact item / .contact-item
        3.3 Full screen / .full-screen
        3.4 Category item / .category-item 
        3.5 Team item / .team-carousel
        3.6 Icon box / .icon-box-item
        3.7 Icon box 2 / .icon-box2-item
        3.8 Icon box 3 / .icon-box-area
        3.9 Blog item / .blog-item
        3.10 Testimonials item / .testimonials-item 
        3.11 Gallery item / .gallery-item
        3.12 Pagination / .pagination
        3.13 Contact col / .contact-col
        3.14 Working hours / .day-item
        3.15 Feedback form / .form
        3.16 Price item / .price-item
        3.17 Table price / .price-table
        3.18 Doctor info / .doctor-col
        3.19 Comment item / .comment-item
        3.20 404 page / .image-404
        3.21 Slider
        3.22 Event
        3.23 Wiki
        3.24 Vanilla DataTables
        3.25 Profile
        3.26 Persian Datepicker
        3.27 Chosen
        3.28 Timetable
    4 Footer / .footer
        4.1 Footer menu / .footer-menu
        4.2 Form subsription / .form-subsription
        4.3 Form subsription big / .form-subsription-big
    5 Responsive


[Typography]

- Headers:
    h1: 3.429em 'Work Sans', sans-serif;
    h2: 2.571em 'Work Sans', sans-serif;
    h3: 2.143em 'Work Sans', sans-serif;
    h4: 1.714em 'Work Sans', sans-serif;
    h5: 1.286em 'Work Sans', sans-serif;
    h6: 1.143em 'Work Sans', sans-serif;

Body: 14px 'Work Sans', sans-serif;
Input, textarea: 14px 'Work Sans', sans-serif;

-------------------------------------------------------------------*/


/*------------------------------------------------------------------
[1. Base ]
*/

:root {
    --primary: #96b531;
    --secondary: #ffc40d;
}

aside, nav, footer, header, section { display: block }
body {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #3c3d41;
}
a {
    color: inherit;
}
img {
    border: none;
}
input, textarea, button, select,a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
input, textarea, button, select {
    font-family: 'Work Sans', sans-serif;
}

input::-webkit-input-placeholder, input::-moz-placeholder, input:-moz-placeholder, input:-ms-input-placeholder, input::placeholder {
    color: #c8c9ca;
}

textarea::-webkit-input-placeholder, textarea::-moz-placeholder, textarea:-moz-placeholder, textarea:-ms-input-placeholder, textarea::placeholder {
    color: #c8c9ca;
}

img, iframe, embed {
    max-width: 100%;
}
a:focus, a:hover{
    color: #000;
    text-decoration: none;
}
table, table th{
    text-align: center;
}
video{
    display: block;
    margin: 0 auto;
    max-width: 640px;
}
audio{
    display: block;
    margin: 0 auto;
    width: 400px;
    max-width: 100%;
}
.text-bold{
    font-weight: bold;
}
*:focus {
    outline: none;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.tal {
    text-align: left;
}
.tar {
    text-align: right;
}
.tac {
    text-align: center;
}
.taj {
    text-align: justify;
}
.ttu {
    text-transform: uppercase;
}
.cell {
    display: table-cell;
    vertical-align: middle;
}

@keyframes blink {
    from, to { opacity: 1 }
    50% { opacity: 0 }
}
.blink {
    -webkit-animation: blink 3s linear infinite;
    -moz-animation: blink 3s linear infinite;
    -ms-animation: blink 3s linear infinite;
    -o-animation: blink 3s linear infinite;
    animation: blink 3s linear infinite;
}

#page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 777;
}

#page-preloader .spinner {
    background: url(../images/preloader.png) no-repeat;
    width: 145px;
    height: 110px;
    background-size: contain;
}


@-webkit-keyframes preloader {
  0% {
    width: 0px;
  }
  50% {
    width: 150px;
  }
  100% {
    width: 0px;
  }
}


@keyframes preloader {
  0% {
    width: 0px;
  }
  50% {
    width: 150px;
  }
  100% {
    width: 0px;
  }
}

#page-preloader .spinner:after {
    content: "";
    position: absolute;
    height: 98px;
    width: 150px;
    background: url(../images/preloader-s.png) 0 0 no-repeat;
    top: 11px;
    left: -2px;
    /* right: -2px; */
    background-size: 150px auto;
    -webkit-animation: preloader 2.0s ease-in-out infinite;
    -moz-animation: preloader 2.0s ease-in-out infinite;
    -ms-animation: preloader 2.0s ease-in-out infinite;
    -o-animation: preloader 2.0s ease-in-out infinite;
    animation: preloader 2.0s ease-in-out infinite;
}

.fw-container {
    padding: 0 15px;
}

@media (max-width: 768px) {
    .fw-container {
        width: 100%;
    }
}

.content {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.667em;
}

.centered-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    margin: 0;
    z-index: 1;
}

.dark-bg {
    background-color: var(--primary);
    color: #fff;
}

.blockquote {
    position: relative;
    padding: 15px 35px;
    color: #4b5255;
    font-style: italic;
    line-height: 1.714em;
    text-align: justify;
}

.blockquote:after, .blockquote:before {
    content: "";
    width: 8px;
    height: 7px;
    position: absolute;
    background-size: contain !important;
}

.blockquote:before {
    background: url(../images/quote-t.png) no-repeat;
    top: 10px;
    left: 0;
}

.blockquote:after {
    background: url(../images/quote-b.png) no-repeat;
    bottom: 10px;
    right: 0;
}

.full-height{
    min-height: calc(100vh - 300px);
}

.hidden{
    display: none;
}

.background-gray{
    background-color: #f7f7f7;
}

.cursor-pointer{
    cursor: pointer;
}

.item-tag {
    top: 10px;
    left: -5px;
    color: #000 !important;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    position: absolute;
    background: var(--secondary);
    text-transform: capitalize;
    z-index: 1;
}

.item-tag::before {
    top: 100%;
    right: 0;
    width: 0;
    height: 0;
    content: '';
    position: absolute;
    border-top: 6px solid var(--secondary);
    border-right: 6px solid transparent;
}

.progress{
    margin: 10px;
}

#timer{
    background-color: var(--secondary);
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50%;
    padding: 10px;
    margin: 10px 15px;
}

.full-width{
    width: 100%;
}

/*------------------------------------------------------------------
[1.1. Owl Carousel controllers ]
*/

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    color: var(--primary);
    font-size: 30px;
    border: 2px solid var(--primary);
    padding: 0 15px !important;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover{
    background-color: var(--primary);
    color: #fff;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    color: var(--primary);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -60px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -60px;
}

.owl-dots {
    text-align: center;
    width: 100%;
    left: 0;
}

.owl-carousel button.owl-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    background: #a8a8a8;
    margin: 0 2px;
    border-radius: 50%;
}

.owl-carousel button.owl-dot.active,
.owl-carousel button.owl-dot:hover {
    background: var(--primary);
}

.row.owl-carousel{
    margin: 0;
}

/*------------------------------------------------------------------
[1.2. Heading ]
*/

h1,.h1 {
    font-size: 26px; /* 14px/48px */
    line-height: 1.1em;
    font-weight: bold;
}

h1.min,
.h1.min {
    font-size: 2.467em;
}

h1.big,
.h1.big {
    font-size: 4.286em; /* 14px/60px */
    line-height: 1em;
    margin: 0 0 15px;
}

h2,.h2 {
    font-size: 20px; /* 14px/36px */
    line-height: 1.4;
    font-weight: bold;
}

h3,.h3 {
    font-size: 2.143em; /* 14px/30px */
    line-height: 1.5;
    font-weight: bold;
}

h4,.h4 {
    font-size: 18px; /* 14px/24px */
    line-height: 1.5;
    font-weight: bold;
}

h5,.h5 {
    font-size: 1.286em; /* 14px/18px */
    line-height: 1.5;
    font-weight: bold;
}


h6,.h6 {
    font-size: 16px; /* 14px/16px */
    line-height: 1.5;
    font-weight: bold;
}

.heading-img img{
    height: 64px;
}

.heading-decor {
    text-align: center;
}

.heading-decor:after {
    content: "";
    display: block;
    margin: 10px auto 0;
    background: var(--primary);
    height: 3px;
    width: 40px;
}

.blue-color {
    color: var(--primary);
}

.post-date {
    color: var(--primary);
    font-size: 12px;
    font-weight: bold;
    margin: 5px 0;
}

/*------------------------------------------------------------------
[1.3 Paddings ]
*/

/*------------------------------------------------------------------
[1.3.1 Padding top ]
*/

.pt5 {
    padding-top: 5px;
}

.pt10 {
    padding-top: 10px;
}

.pt15 {
    padding-top: 15px;
}

.pt20 {
    padding-top: 20px;
}

.pt25 {
    padding-top: 25px;
}

.pt30 {
    padding-top: 30px;
}

.pt35 {
    padding-top: 35px;
}

.pt40 {
    padding-top: 40px;
}

.pt45 {
    padding-top: 45px;
}

.pt50 {
    padding-top: 50px;
}

/*------------------------------------------------------------------
[1.3.2 Padding bottom  ]
*/

.pb5 {
    padding-bottom: 5px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb15 {
    padding-bottom: 15px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb25 {
    padding-bottom: 25px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb35 {
    padding-bottom: 35px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb45 {
    padding-bottom: 45px;
}

.pb50 {
    padding-bottom: 50px;
}

/*------------------------------------------------------------------
[1.4 Buttons ]
*/

.button{
    cursor: pointer;
    margin: 0 3px;
}

.button-style1 {
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    border: none;
    min-width: 130px;
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
    background: var(--primary);
    font-weight: 500;
    color: #fff;
    margin: 5px 0;
    padding: 7px 25px;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    line-height: normal;
}

.button-style1 + a,
.button-style1 + input,
.button-style1 + button,
.button-style2 + a,
.button-style2 + input,
.button-style2 + button {
    margin: 0 10px;
}

.button-style1 span {}

.button-style1:hover {
    background: var(--primary);
    color: #fff;
}

.button-style1.dark:hover {
    background: #2d3031;
    color: #fff;
}

.button-style1.dark {
    background: #4b5255;
}

.button-style1.min {
    font-size: 14px;
    padding: 11px 10px;
    min-width: inherit;
}

.button-style2 {
    display: inline-block;
    font-size: 14px;
    text-decoration: none !important;
    font-weight: 500;
    padding: 7px 25px;
    border: 2px solid var(--secondary);
    background-color: var(--secondary);
    color: #302d2a;
    text-align: center;
    text-transform: uppercase;
    margin: 2px 0;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.button-style2:hover, .mixitup-control-active {
    background: #e1ae0a;
    color: #000;
}

.button-style2 span {
    display: block;
}

.button-style2.white {
    border-color: #fff;
    color: #fff;
}

.button-style2.white:hover {
    background: #3c3d41;
    border-color: #3c3d41;
}

.button-style2.gray {
    border-color: #706f6f;
    color: #706f6f;
}

.button-style2.gray:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.button-style2.min {
    padding: 7px 15px;
}

.button-style2.big {
    font-size: 18px;
    padding: 11px 20px;
}

.button-style2 img{
    height: 28px;
}

/*------------------------------------------------------------------
[1.5 Input style ]
*/

input.style1,textarea.style1,select.style1 {
    border: 2px solid #c8c9ca;
    background: none;
    font-size: 14px;
    color: #000;
    line-height: 23px;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance:none;
    -ms-appearance:none;
    -o-appearance:none;
    appearance:none;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

input.style1:focus, textarea.style1:focus, select.style1:focus{
    border: 2px solid var(--primary);
}

input.style1 {
    padding: 12px 10px;
    width: 270px;
}

input.style1.min {
    padding: 9px 10px;
    width: 200px;
    border-left: none;
}

textarea.style1 {
    padding: 10px 10px;
    width: 100%;
    height: 140px;
    resize: none;
}

select.style1 {
    padding: 12px 40px 12px 10px;
    background: url(../images/select.png) top 50% right 7px no-repeat;
}

.input-radio, .input-checkbox{
    border: 2px solid #c8c9ca;
    margin-bottom: 10px;
    padding: 7px 10px;
}

.input-radio label, .input-checkbox label{
    color: #757575;
    font-size: 14px;
    font-weight: inherit;
    padding: 0 12px;
    margin: 3px 0;
}

.input-radio input, .input-checkbox input{
    width: initial !important;
}

.input-radio.full-width label, .input-checkbox.full-width label{
    width: 100%;
    margin: 3px 0;
}

.input-radio.error, .input-checkbox.error, .style1.error{
    border-color: red;
}

/*------------------------------------------------------------------
[2 Header ]
*/

header {
    height: 200px;
    background-color: #fbfbfb;
}

.top-header {
    background:var(--primary);
    border-bottom: 1px solid var(--primary);
    padding: 13px 0;
    z-index: 2;
}

.header-wrap {
    position: absolute;
    top: 51px;
    width: 100%;
    z-index: 10;
    background-color: #fbfbfb;
}

.header-wrap.fixed {
    position: fixed;
    top: 0;
    box-shadow: inset 0 -1px 0 #eeeeee;
}

header .social{
    text-align: right;
}

header .contact{
    text-align: left;
}

.navbar{
    margin: 0;
    z-index: 1;
}

.navbar-header{
    margin-top: 5px;
}

.navbar-brand{
    padding: 0;
    text-align: center;
    display: inline-block;
    float: none;
}

.navbar-brand > img{
    max-width: 100%;
    height: 83px;
}

.navbar-button{
    text-align: right;
    margin-top: 25px;
}

.navbar-button a{
    margin: 5px;
}

.navbar-collapse{
    text-align: center;
}

.navbar-nav{
    float: none;
    text-align: center;
    padding: 0;
    margin-top: 15px;
}

.navbar-nav > li{
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    float: none;
}

.navbar-nav > li i{
    font-size: 18px;
}

.navbar-toggle{
    background-color: var(--primary);
}

.navbar-toggle .icon-bar{
    background-color: #fff;
}

.nav > li > a{
    padding-right: 10px;
    padding-left: 10px;
}

.nav > li > a.button-style2{
    margin: 0;
    padding: 10px;
}

.navbar-nav > li:hover > a, .navbar-nav > li > a:focus{
    box-shadow: inset 0 -3px 0 0 var(--primary);
    background-color: transparent;
}

.navbar-nav > li:hover > a.button-style2, .navbar-nav > li > a.button-style2:focus{
    box-shadow: none;
    background: #e1ae0a;
}

.dropdown-menu{
    padding: 0;
    border: 1px solid #dddddd;
}

.dropdown-menu > li:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
}

.dropdown-menu > li > a{
    height: 35px;
    padding: 3px 10px;
    text-align: left;
    padding: 8px 15px;
}

.dropdown-menu > li:hover > a{
    background:var(--primary);
    color:#fff;
}

/*------------------------------------------------------------------
[2.1 Navigation / .navigation ]
*/

.navigation {
    /* border-left: 1px solid #dddddd; */
    /* border-right: 1px solid #dddddd; */
    text-transform: uppercase;
}

.navigation ul {
    margin: 0;
    padding: 0;
}

.navigation ul li {
    display: block;
    position: relative;
}

.navigation ul li a {
    text-decoration: none;
}

.navigation > ul {
    text-align: center;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
}

.navigation > ul > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 22px;
    text-align: left;
}

.navigation > ul > li > a {
    display: table-cell;
    height: 70px;
    vertical-align: middle;
}

.navigation > ul > li.current-menu-item {}

.navigation > ul > li.current-menu-item > a,
.navigation > ul > li:hover > a {
    box-shadow: inset 0 -3px 0 0 var(--primary);
}

.navigation .sub-nav {
    position: absolute;
    top: 70px;
    left: -5px;
    width: 150px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 1px solid #dddddd;
    background: #fff;
}

.navigation .sub-nav .sub-nav {
    top: -1px;
    left: 100%;
}

.navigation ul li.menu-item-has-children:hover > .sub-nav {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.navigation .sub-nav .sub-menu {}

.navigation .sub-nav .sub-menu li {
}

.navigation .sub-nav .sub-menu li:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
}

.navigation .sub-nav .sub-menu li a {
    height: 35px;
    display: table-cell;
    vertical-align: middle;
    padding: 4px 0;
    width: 150px;
    padding: 3px 15px;
    font-size: 0.857em;
    position: relative;
}

.navigation .sub-nav .sub-menu li.menu-item-has-children > a:after {
    content: '\e843';
    font-family: "icon-font";
    position: absolute;
    color: #dddddd;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
}

.navigation .sub-nav .sub-menu li.current-menu-item > a, 
.navigation .sub-nav .sub-menu li:hover > a {
    background: var(--primary);
    color: #fff;
}

/*------------------------------------------------------------------
[2.2 Search module / .search-module ]
*/

.search-module {
    padding: 15px 15px 0 15px;
}

.search-module form {
    position: relative;
}

.search-module .input {
    padding: 0;
    margin: 0;
    border: none;
    color: #888888;
    font-size: 14px;
    width: 100%;
    line-height: 23px;
    height: 23px;
}

.search-module .submit {
    border: none;
    background: #fff;
    font-size: 19px;
    padding: 0 5px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.search-module .submit i {}

/*------------------------------------------------------------------
[2.3 Mobile side / .mobile-side ]
*/

.mobile-side {
    position: fixed;
    top: 45px;
    right: -300px;
    bottom: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mobile-side.active {
    right: 0;
}

.mobile-side-button {
    float: right;
    font-size: 37px;
    display: none;
    line-height: 45px;
    padding: 0 10px;
}

.mobile-navigation {
    min-width: 300px;
}

.mobile-navigation ul {
    margin: 0;
    padding: 0;
}

.mobile-navigation ul li {
    display: block;
}

.mobile-navigation ul li a {
    text-decoration: none;
    display: block;
}

.mobile-navigation > ul {}

.mobile-navigation > ul > li {
}

.mobile-navigation > ul > li:not(:last-of-type) {
    border-bottom: 1px solid #ddd;
}

.mobile-navigation > ul > li > a {
    font-size: 1.2em;
    padding: 10px 20px;
    position: relative;
}

.mobile-navigation > ul > li.current-menu-item > a,
.mobile-navigation > ul > li.active > a,
.mobile-navigation > ul > li:hover > a {
    color: var(--primary);
}

.mobile-navigation ul li.menu-item-has-children > a:after {
    content: "\e814";
    font-family: 'icon-font';
    font-size: 0.7em;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
}

.mobile-navigation .sub-nav {
    display: none;
    padding: 0px 0 0px;
    margin: 0 0 0 20px;
}

.mobile-navigation .sub-nav ul {}

.mobile-navigation .sub-nav ul li {
}

.mobile-navigation .sub-nav ul li:not(:last-of-type) {
    border-bottom: 1px solid #eaeaea;
}

.mobile-navigation .sub-nav ul li a {
    padding: 10px 0;
    position: relative;
}

.mobile-navigation .sub-nav ul li.current-menu-item > a,
.mobile-navigation .sub-nav ul li.active > a,
.mobile-navigation .sub-nav ul li:hover > a {
    color: var(--primary);
}

/*------------------------------------------------------------------
[3 Body ]
*/

/*------------------------------------------------------------------
[3.1 Social link / .social-link ]
*/
.social-link{
    color: #fff;
}

.mobile-side .social-link {
    padding: 15px 20px;
}

.social-link a {
    margin-right: 10px;
    font-size: 18px;
}

.social-link a:hover {
    color: #3c3d41;
}

i.iran-socials {
    position: relative;
    top: 3px;
    font-size: 19px;
}

/*------------------------------------------------------------------
[3.2 Contact item / .contact-item ]
*/

.contact-item {
    font-weight: 500;
    color: #fff;
}

.contact-item:not(:last-of-type) {
    margin-right: 45px;
}

.contact-item i {
    margin-right: 5px;
    font-size: 1.1em;
}

.contact-item span {}

.contact-item a:hover, .contact-item a:focus{
    text-decoration: none;
    color: #fff;
}

/*------------------------------------------------------------------
[3.3 Full screen / .full-screen ]
*/

.full-screen {}

.full-screen .container {
    padding: 0;
    float: none;
    display: inline-block;
}

.full-screen .h1 {}

.full-screen p {
    font-size: 1.286em;
    font-weight: 500;
    margin: 15px 0;
    font-style: italic;
}

.full-screen .button-style1:not(:last-of-type) {
    margin-right: 15px;
}

/*------------------------------------------------------------------
[3.4 Category item / .category-item  ]
*/

.category-item {
    overflow: hidden;
    border-radius: 3px;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    margin: 0 auto 30px;
    position: relative;
    text-align: center;
    max-width: 480px;
}

.category-item .centered-container {
    width: 100%;
}

.category-item:after {
    content: "";
    display: block;
    padding-bottom: 92%;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    transition: all 0.8s ease;
    background: rgba(0, 0, 0, 0.10);
}

.category-item:hover:after {
    background: rgba(0, 0, 0, 0.4);
}

.category-item a {}

/*------------------------------------------------------------------
[3.5 Team item / .team-carousel ]
*/

.team-carousel .owl-carousel {
    margin-bottom: 80px;
}

.team-carousel .owl-dots{
    bottom: -40px;
}

.team-item{
    margin-bottom: 30px;
}

.team-item .wrap{
    direction: rtl;
    background: #f5f5f5;
    border-radius: 0 0 5px 5px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease 0s;
}

.team-item .wrap:hover{
    box-shadow: 0 4px 26px 3px rgba(75, 75, 75, .25);
    margin-top: -5px;
}

.team-carousel .team-item {
    margin: 0 auto;
}

.team-item .image {
    text-align: center;
}

.team-item .image img {
    vertical-align: bottom;
    max-width: 100%;
}

.team-item .image img.avatar{
    height: 200px;
    border: 4px solid var(--primary);
    border-radius: 50%;
    margin: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.team-item .name {
    background: var(--primary);
    height: 75px;
    width: 680px;
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    text-align: center;
    padding: 5px;
}

.team-item .name h4 {
    margin: 0 0 5px;
}

.team-item .name span {
    text-transform: uppercase;
    font-size: 14px;
}

.team-item .name a:hover, .team-item .name a:focus{
    color: #fff;
}

.team-item .departments {
    color: #302d2a;
    font-weight: 500;
    padding: 0 12.2%;
    text-align: left;
    margin-top: 15px;
    height: 230px;
}

.team-item .departments .item {
    overflow: hidden;
    padding: 9px 0;
    text-align: center;
}

.team-item .departments .item i{
    font-size: 17px;
}

.team-item .timetable .item p{
    margin-top: 5px;
}

.team-item .departments .item:not(:last-of-type) {
    border-bottom: 1px solid #dddddd;
}

.team-item .departments .item .label {
    /*float: left;*/
    /*width: 50%;*/
    color: #000;
    font-size: 14px;
}

.team-item .departments .item .value {
    float: right;
    width: 50%;
    text-align: center;
}

.team-item .departments .info{
    line-height: 1.8;
    text-align: center;
}

.team-item .departments_icons{
    margin: 10px 0;
    height: 30px;
}

.team-item .departments_icons img{
    height: 28px;
    margin: 0 5px;
}

.team-item .departments_icons .tooltip-inner{
    color: #000;
    background: var(--secondary);
    font-family: Vazir;
}

.team-item .departments_icons .tooltip.bottom .tooltip-arrow{
    border-bottom-color: var(--secondary);
}

.team-item:hover{
    cursor: pointer;
}

.team-item:hover .image img.avatar{
    border-radius: 40px;
}

.team-item .edit-icon{
    padding: 10px;
}

.team-item .button-style2 {
    margin-bottom: 20px;
}

.filter-area{
    margin-bottom: 30px;
}

.filter-area .filter-buttons button{
    margin: 7px 0;
}

/*------------------------------------------------------------------
[3.6 Icon box / .icon-box-item ]
*/

.icon-box-item {
    margin-bottom: 30px;
}

.icon-box-item .icon {
    float: left;
    color: var(--primary);
    font-size: 45px;
    text-align: right;
    width: 75px;
}

.icon-box-item .text {
    margin-left: 100px;
}

.icon-box-item .h4 {
    margin-bottom: 6px;
}

.icon-box-item p {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.667em;
}

/*------------------------------------------------------------------
[3.7 Icon box 2 / .icon-box2-item ]
*/

.icon-box2-item {
    text-align: center;
    margin: 30px 0;
}

.icon-box2-item .icon{
    margin-bottom: 15px;
}

.icon-box2-item .icon img {
    height: 96px;
}

.icon-box2-item h4 {
    font-weight: normal;
}

.icon-box2-item span {
    font-size: 20px;
    font-weight: bold;
}

.icon-box2-item .number {
    font-size: 42px;
    font-weight: bold;
    line-height: 1em;
    margin-top: 15px;
    color: #fff;
}

.icon-box2-item h2 {
    margin: 0;
    font-weight: normal;
}

/*------------------------------------------------------------------
[3.8 Icon box 3 / .icon-box-area ]
*/

.icon-box-area {
    overflow: hidden;
}

.icon-box-col {
    text-align: center;
    padding: 20px 8px;
    border-right: 1px solid #dddddd;
    position: relative;
    margin: 0px -1px -1px 1px;
    height: 280px;
    cursor: pointer;
}

.icon-box-col .wrap{
    transition: all 0.5s ease 0s;
}

.icon-box-col .wrap:hover{
    margin-top: -5px;
}

.icon-box-col .icon {
    font-size: 3.571em;
    color: var(--primary);
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.icon-box-col:hover .icon {
    /* color: #818181; */
}

.icon-box-col .icon img {
    height: 96px;
}

.icon-box-col .h4 {
    margin: 0;
    min-height: 30px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.icon-box-col:hover .h4 {
    color: var(--primary);
}

.icon-box-col p {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.500em;
    margin: 0.7em 0;
}

.icon-box-col a{
    text-decoration: none;
}

.icon-box-col a:hover, .icon-box-col a:focus{
    color: var(--primary);
}

.icon-box-col .button-style2 {}

/*------------------------------------------------------------------
[3.9 Blog item / .blog-item ]
*/

.blog-item {
    margin-bottom: 30px;
}

.blog-item .wrap{
    height: 510px;
    position: relative;
    background: #f5f5f5;
    transition: all 0.5s ease 0s;
    cursor: pointer;
}

.blog-item .wrap:hover{
    box-shadow: 0 4px 26px 3px rgba(75, 75, 75, .25);
    margin-top: -5px;
}

.blog-item.in-row {}

.blog-item .image {
    margin-bottom: 10px;
    padding: 0;
}

.blog-item.in-row .image {
    margin-bottom: 0;
}

.blog-item .image img {
    max-width: 100%;
    vertical-align: bottom;
}

.blog-item .post-date {
    margin: 10px 0;
    text-align: left;
    direction: ltr;
}

.blog-item h6 {
    margin-bottom: 0;
    text-align: justify;
    height: 50px;
}

.blog-item h6 a {
    text-decoration: none;
}

.blog-item p {
    margin: 0;
    line-height: 1.714em;
    font-weight: 300;
    text-align: justify;
}

.blog-item p a {
    color: var(--primary);
    text-decoration: none;
}

.blog-item .button-style2 {
    margin-top: 15px;
}

.blog-item .post-content{
    padding: 1px 10px;
}

/*------------------------------------------------------------------
[3.10 Testimonials item / .testimonials-item  ]
*/

.testimonials-slider {
    margin: 40px 0;
}

.testimonials-item {
    position: relative;
    margin: 0 auto;
    max-width: 970px;
    overflow: hidden;
}

.testimonials-item .image {
    position: absolute;
    top: 0;
    bottom: 0;
}

.testimonials-item .image div {
    position: absolute;
    top: 0;
    left: 15px;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: 50%;
}

.testimonials-item .text {
    max-width: 640px;
}

.testimonials-item .text > div,
.desc-block {
    background: #fff;
    padding-bottom: 50px;
}

.testimonials-item .text .top,
.desc-block .top {
    background: var(--primary);
    text-align: center;
    color: #fff;
    padding: 35px 0;
    height: 120px;
    display: table-cell;
    width: 780px;
}

.testimonials-item .text .top .h4,
.desc-block .top .h4 {
    margin-bottom: 5px;
}

.testimonials-item .text .top span {}

.testimonials-item .text .h5, .desc-block .h5 {
    text-transform: uppercase;
    max-width: 350px;
    margin: 55px auto 20px;
    padding: 0 20px;
    /* font-weight: normal; */
}

.testimonials-item .text .blockquote,
.desc-block .blockquote {
    max-width: 380px;
    margin: 0 auto 30px;
    width: 90%;
}

.testimonials-item .text .button-style2 {}

/*------------------------------------------------------------------
[3.11 Gallery item / .gallery-item ]
*/

.gallery-item {
    background-position: 50%;
    background-size: cover;
    position: relative;
    cursor: pointer;
    text-align: center;
    margin: 0 15px;
}

.gallery-item img {
    vertical-align: bottom;
}

.gallery-masonry {
    height: 800px;
}

.gallery-masonry .gallery-item {
    height: auto;
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-decoration: none;
    transition: 0.2s all;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    background-color: #000;
    color: #fff;
    padding: 8px 10px;
}

.gallery-masonry .gallery-item .overlay {
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 30px;
    height: auto;
    width: auto;
}

.gallery-item:hover .overlay, .gallery-item .overlay.movie {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%)
}

.gallery-item .overlay span {
    display: block;
    text-align: center;
    font-size: 14px;
}

.gallery-item .overlay span.h2 {
    margin-bottom: 20px;
}

.gallery .owl-controls{
    position: relative;
    top:30px;
}

.gallery .owl-dots{
    padding-top: 20px;
}

/*------------------------------------------------------------------
[3.12 Pagination / .pagination ]
*/

.pagination {
    overflow: hidden;
    margin: 30px 0 40px;
    color: #000;
}

.pagination a {
    text-decoration: none;
    float: left;
    padding: 0px 3px 0px;
    border: 1px solid #dddddd;
    margin-right: -1px;
    min-width: 28px;
    height: 28px;
    line-height: 26px;
    text-align: center;
    color: inherit;
}

.pagination a.active,.pagination a:hover {
    background: var(--primary);
    color: #fff;
}

.pagination a.active {
    pointer-events: none;
}

.pagination i {
    font-size: 0.7em;
    display: inline-block;
    vertical-align: top;
}

/*------------------------------------------------------------------
[3.13 Contact col / .contact-col ]
*/

.contact-col {
    text-align: center;
    min-height: 150px;
    padding: 20px 15px;
}

.contact-col:not(:last-of-type) {
    border-right: 1px solid #dddddd;
}

.contact-col .cell {}

.contact-col .icon {
    font-size: 3.214em;
    color: var(--primary);
}

.contact-col p {
    font-size: 1.286em;
    line-height: 1.333em;
    margin: 10px 0 0;
}

.contact-col a {
    text-decoration: none;
}

/*------------------------------------------------------------------
[3.14 Working hours / .day-item ]
*/

.day-item {
    text-align: center;
}

.day-item:nth-child(odd) {
    margin-top: 5.7em;
}

.day-item:nth-child(even) {
    margin-bottom: 80px;
}

.day-item.closed {}

.day-item .circle {
    margin: 0 auto;
    max-width: 125px;
    font-size: 2.571em;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50%;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.day-item:not(.closed):hover .circle {
    background: rgba(35,171,225,0.5);
    color: #fff;
}

.day-item.closed .circle {
    color: #fff;
    background: var(--primary);
}

.day-item .circle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    margin: -3px 0 -3px -33px;
    background: url(../images/day-decor.png) no-repeat;
    background-size: contain;
    background-position: 0 0;
    width: 65px;
}

.day-item.style1 .circle:before {
    transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
}

.day-item.style2 .circle:before {
    transform: rotate(75deg);
    -webkit-transform: rotate(75deg);
}

.day-item.style3 .circle:before {
    transform: rotate(130deg);
    -webkit-transform: rotate(130deg);
}

.day-item.style4 .circle:before {
    transform: rotate(165deg);
    -webkit-transform: rotate(165deg);
}

.day-item.style5 .circle:before {
    transform: rotate(215deg);
    -webkit-transform: rotate(215deg);
}

.day-item.style6 .circle:before {
    transform: rotate(285deg);
    -webkit-transform: rotate(285deg);
}

.day-item.style7 .circle:before {
    transform: rotate(335deg);
    -webkit-transform: rotate(335deg);
}

.day-item .cell {
    width: 123px;
    height: 123px;
    position: relative;
    z-index: 1;
}

.day-item .cell span {}

.day-item p {
    font-size: 1.286em;
    margin: 15px -35px 0;
    text-transform: uppercase;
}

/*------------------------------------------------------------------
[3.15 Feedback form / .form ]
*/

form .help{
    font-weight: bold;
    color: red;
}

form .icon{
    text-align: center;
    padding: 10px 0;
}

form .icon img{
    height: 100px;
}

.form {}

.form input,
.form textarea,
.form select {
    width: 100%;
    margin-bottom: 10px;
}

.form textarea {
    height: 175px;
    resize: none;
}

.form input#captcha{
    text-align: center;
    height: 44px;
}

.form .result{
    margin-top: 15px;
    font-size: 16px;
}

.form .note{
    color: #757575;
}

    /*------------------------------------------------------------------
    [3.16 Price item / .price-item ]
    */

.price-item {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    overflow: hidden;
    border-radius: 5px;
    margin: 0 auto 30px;
    max-width: 480px;
}

.price-item:after {
    content: "";
    display: block;
    margin-bottom: 95%;
}

.price-item > div {
    position: absolute;
    max-width: 300px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px 0 0 35px;
}

.price-item h3 {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.price-item p {
    font-size: 1.286em;
    line-height: 1.667em;
    font-weight: 300;
}

.price-item .price {
    font-size: 3.429em;
    font-weight: bold;
    position: absolute;
    bottom: 30px;
    left: 35px;
}

.price-item .price span {
    font-weight: 300;
    font-size: 0.375em;
    display: block;
    line-height: 1em;
    margin-bottom: -0.2em;
    text-transform: uppercase;
}

/*------------------------------------------------------------------
[3.17 Table price / .price-table ]
*/

.price-table {
    border: 1px solid #dddddd;
}

.price-table .fw-row {
    margin: 0;
    padding: 22px 25px;
}

.price-table .fw-row:not(:last-of-type) {
    border-bottom: 1px solid #eeeeee;
}

.price-table .t-head {
    background: #f6f6f6;
    margin: 0;
    padding: 15px 25px;
}

.price-table .h1,
.price-table .h2,
.price-table .h3,
.price-table .h4,
.price-table .h5,
.price-table .h6 {
    margin-bottom: 0;
}

/*------------------------------------------------------------------
[3.18 Doctor info / .doctor-col ]
*/

.doctor-col {
    text-align: center;
}

.doctor-col > .cell {
    height: inherit;
    width: 800px;
}

.doctor-col img {
    vertical-align: bottom;
}

/*------------------------------------------------------------------
[3.19 Comment item / .comment-item ]
*/

.comment-item {
    margin-bottom: 30px;
}

.comment-item .image {
    float: left;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-item .image img {
    vertical-align: middle;
    max-width: 100%;
}

.comment-item .text {
    margin-left: 130px;
}

/*------------------------------------------------------------------
[3.20 404 page / .image-404 ]
*/

.image-404 {
    max-width: 920px;
    display: block;
    margin: 0 auto;
    width: 70%;
}

@media (max-height: 950px) {
   .image-404 {
        max-width: 540px;
    }
}

/*------------------------------------------------------------------
[3.21 Slider ]
*/

#main-slider{
    position: relative;
}

#main-slider .carousel h2 {
    font-size: 36px;
}

#main-slider .carousel .btn {
    border: 3px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 0;
    margin-top: 5px;
}

#main-slider .carousel .btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

#main-slider .carousel .boxed {
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.8);
    display: inline-block;
}

#main-slider .carousel-inner > .item > a > img{
    width: 100%;
}

#main-slider a.prev,
#main-slider a.next {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: inline-block;
    font-size: 24px;
    height: 40px;
    width: 40px;
    line-height: 50px;
    text-align: center;
    border-radius: 4px;
    z-index: 5;
}

#main-slider a.prev:hover,
#main-slider a.next:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

#main-slider a.prev {
    font-size: 36px;
    left: 10px;
}

#main-slider a.next {
    font-size: 36px;
    right: 10px;
}

/*------------------------------------------------------------------
[3.22 Event ]
*/

.event .info .pinned{
    font-weight: bold;
}

.event .info p{
    margin: 12px 0;
}

.event .info img{
    height: 32px;
    margin-right: 10px;
}

.event .team .avatar img{
    height: 100px;
    border: 4px solid var(--primary);
    border-radius: 50%;
    margin: 15px;
}

.event .poster{
    float: left;
    margin: 15px;
    cursor: pointer;
}

.event .poster img{
    margin: 0 auto;
    max-width: 320px;
}

.event-report{
    border:2px dashed black;
    padding: 10px 10px;
    margin: 10px 0;
}

.event-report .logo img{
    height: 72px;
}

.event-report .register-info{
    font-size: 15px;
    font-weight: bold;
    margin-top: 20px;
}

.event-report .register-info > div{
    border: 1px solid #000;
    padding-top: 10px;
}

.event-report .info{
    margin: 20px 0 30px 0;
}

.event-report .info img{
    height: 32px;
    margin-right: 10px;
}

.event-comments .avatar img{
    height: 75px;
    border-radius: 50%;
    margin: 15px;
}

.event-comments .message{
    text-align: justify;
    margin-top: 30px;
    font-size: 15px;
}

.event-comments .item > div{
    margin-bottom: 10px;
}

.event-comments .item .name{
    color: var(--primary);
}

/*------------------------------------------------------------------
[3.23 Wiki ]
*/

.wiki-categories img{
    height: 96px;
}

.wiki-categories > div{
    display: inline-table;
}

.wiki-categories .wrap{
    height: 140px;
    position: relative;
    transition: all 0.5s ease 0s;
    cursor: pointer;
}

.wiki-categories .wrap:hover{
    background-color: #f7f7f7;
}

.wiki-tree{
    direction: rtl;
}

.wiki-tree .jstree-default > .jstree-container-ul > .jstree-node{
    font-size: 16px;
}

.wiki-tree .jstree-default .jstree-anchor{
    height: 30px;
    padding: 3px 5px 0px 10px;
}

.wiki-tree .jstree-clicked{
    background: var(--primary);
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wiki-tree .jstree-default .jstree-hovered{
    background: var(--secondary);
    color: #000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/*------------------------------------------------------------------
[3.24 Vanilla DataTables ]
*/

.dataTable-wrapper .dataTable-container{
    height: auto !important;
}

.dataTable-table > tbody > tr > td{
    vertical-align: middle;
}

.dataTable-table > thead > tr > th{
    text-align: center;
}

.dataTable-sorter::before{
    border-top-width: 10px;
}

.dataTable-sorter::after{
    border-top-width: 10px;
    border-bottom-width: 10px;
}

.dataTable-pagination .pager{
    margin: 0;
}

.dataTable-pagination li{
    float: right;
}

/*------------------------------------------------------------------
[3.25 Profile ]
*/

.profile-menu{
    background-color: #ececec;
    padding: 20px;
    border-radius: 10px;
}

.profile-menu .icon{
    height: 64px;
    margin-bottom: 10px;
    font-size: 16px;
}

.profile-menu .item{
    margin: 10px;
    padding: 10px;
    font-size: 16px;
}

.profile-menu .item > div{
    text-align: right;
}

.profile-menu .item > div:last-child{
    text-align: left;
}

.profile-menu .menu{
    padding: 10px;
    margin: 10px;
    border-top: 1px solid #cacaca;
}

.profile-menu .menu ul{
    list-style: none;
    padding: 0;
}

.profile-menu .menu ul li{
    padding: 10px 0;
    font-size: 16px;
}

/*------------------------------------------------------------------
[3.26 Persian Datepicker ]
*/

.datepicker-plot-area{
    width: 260px;
}

.datepicker-plot-area .datepicker-day-view .table-days td span{
    height: 50px;
    line-height: 50px;
}

.datepicker-plot-area .datepicker-year-view .year-item, .datepicker-plot-area .datepicker-month-view .month-item{
    height: 60px;
    line-height: 60px;
}

/*------------------------------------------------------------------
[3.27 Chosen ]
*/

.chosen-container{
    margin-bottom: 15px;
}

/*------------------------------------------------------------------
[3.28 Timetable ]
*/

.timetable header{
    height: initial;
}

.timetable aside li{
    text-align: center;
}

.timetable .time-entry small{
    text-align: center;
}

.timetable .time-entry.pending{
    background-color: var(--primary);
    border-color: #cacaca;
}

.timetable .time-entry.free{
    background-color: #686868;
    border-color: #cacaca;
}

.timetable .time-entry.started{
    background-color: #ff5900;
    border-color: #cacaca;
}

.timetable .time-entry.stopped{
    background-color: #000000;
    border-color: #cacaca;
}

.timetable .time-entry.holiday{
    background-color: #dc3545;
    border-color: #dc3545;
}

.timetable-colors span{
    margin: 0 5px;
}

.square{
    display: inline-block;
    height: 20px;
    width: 20px;
}

.square.pending{
    background-color: var(--primary);
    border: 1px solid var(--primary);
}

.square.free{
    background-color: #686868;
    border: 1px solid #686868;
}

.square.started{
    background-color: #ff5900;
    border: 1px solid #ff5900;
}

.square.stopped{
    background-color: #000000;
    border: 1px solid #000000;
}

.square.holiday{
    background-color: #dc3545;
    border: 1px solid #dc3545;
}

/*------------------------------------------------------------------
[4 Footer / .footer ]
*/

.footer {
    background: #ececec;
    padding: 25px 0;
    color: #9b9c9e;
}

.footer h6 {
    margin: 0 0 10px;
    color: #4b5255;
    text-align: center;
}

.footer-logo {
    max-width: 170px;
}

.footer-logo img {
    max-width: 100%;
}

.footer-text {
    font-weight: 500;
    font-size: 0.857em;
    line-height: 1.500em;
    padding-right: 4%;
}

.footer-copy {
    font-size: 14px;
    color: #3c3d41;
}

.footer [class^="fw-col-"]:not(:last-of-type) {
    /* border-right: 1px solid #dddddd; */
}

.footer .social-link a{
    color: #3c3d41;
}

.footer .social-link a:hover {
    color: var(--primary);
}

/*------------------------------------------------------------------
[4.1 Footer menu / .footer-menu ]
*/

.footer-menu {
    margin: 0 0 0 0;
    padding: 0;
}

.footer-menu li {
    display: block;
    position: relative;
    padding-left: 20px;
}

.footer-menu li:before {
    content: "\e843";
    position: absolute;
    font-family: "icon-font";
    font-size: 10px;
    left: 0;
    top: 3px;
}

.footer-menu li:not(:last-of-type) {
    margin-bottom: 5px;
}

.footer-menu li a {
    text-decoration: none;
}

.footer .contact-item {
    display: block;
    margin: 0 0 0;
}

.footer .contact-item:not(:last-of-type) {
    margin-bottom: 10px;
}

.footer .social-link {
    margin-bottom: 15px;
}

.scroll-to-top {
    background-color: var(--secondary);
    display: none;
    width: 40px;
    height: 40px;
    font-size: 25px;
    line-height: 40px;
    text-align: center;
    color: #000;
    position: fixed;
    right: 30px;
    bottom: 45px;
    z-index: 999;
    border: none;
    border-radius: 50%;
    -webkit-transition: display 0.7s linear;
    -o-transition: display 0.7s linear;
    transition: display 0.7s linear;
}

/*------------------------------------------------------------------
[4.2 Form subsription / .form-subsription ]
*/

.form-subsription input.style1 {
    width: 70%;
}

.form-subsription .button-style1 {
    float: right;
    margin: 0;
    width: 30%;
}

/*------------------------------------------------------------------
[4.3 Form subsription big / .form-subsription-big ]
*/

.form-subsription-big {
    max-width: 570px;
    margin: 0 auto;
    background: #fff;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #c8c9ca;
}

.form-subsription-big .button-style1 {
    float: right;
    margin: 0;
}

.form-subsription-big > div {
    margin-right: 130px;
}

.form-subsription-big input.style1 {
    border: none;
    color: #000;
    width: 100%;
    padding: 16px 10px;
}

/*------------------------------------------------------------------
 5. Responsive
*/

@media screen and (max-width: 1360px){
}

@media screen and (max-width: 1200px){
    header{
        height: 200px;
    }

    .navigation > ul > li {
        margin: 0px 15px;
    }
    .day-item .cell,
    .day-item .circle {
        width: 100px;
        height: 100px;
    }

    .day-item .circle:before {
        width: 40px;
        margin: -3px 0 -3px -20px;
    }

    .day-item {
        font-size: 13px;
    }
}

@media screen and (max-width: 990px){
    header {
        height: 380px;
    }

    header .social, header .contact{
        text-align: center !important;
    }

    .search-module{
        margin-top: 10px;
    }

    .button-style1 {
        font-size: 14px;
        padding: 15px 10px;
    }

    .button-style2 {
        font-size: 14px;
        padding: 8px 15px;
    }

    .button-style2.min {
        padding: 7px 15px;
    }

    .button-style2.big {
        font-size: 14px;
        padding: 8px 15px;
    }

    .header-wrap {
        position: initial;
    }

    .navigation {
        display: none;
    }

    .logo-area a {
        height: 45px;
    }

    .logo-area img {
        max-height: 30px;
    }

    .mobile-side-button {
        display: block;
    }

    .mobile-side .search-module {
        display: block;
        padding: 15px 20px;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }

    .contact-item{
        display: block;
    }

    .contact-item:not(:last-of-type) {
        margin: 10px 0 !important;
    }

    .testimonials-item .text .top, .desc-block .top {
        height: 80px;
    }

    .day-item .cell,
    .day-item .circle {
        width: 70px;
        height: 70px;
    }

    .day-item .circle:before {
        width: 40px;
        margin: -3px 0 -3px -20px;
    }

    .day-item {
        font-size: 9px;
    }

    .footer [class^="fw-col-"]:not(:last-of-type) {
        margin-bottom: 30px;
    }

    .footer .social-link{
        text-align: center;
    }

    .footer-copy{
        text-align: center;
    }

    .report-actions > div{
        text-align: center;
    }
}

@media screen and (max-width: 768px){

    .navbar-button{
        text-align: center !important;
    }

    .navbar-collapse{
        border: none;
        background-color: #fbfbfb;
    }

    .navbar-brand{
        margin: 10px 0 10px 0;
    }

    .navbar-toggle{
        margin-top: 20px;
    }

    .navbar-brand > img{
        height: 65px;
    }

    .navbar-nav{
        padding-right: 0;
    }

    .navbar-nav > li{
        display: block;
        text-align: center;
    }

    .dropdown-menu > li > a{
        display: block;
        width: 100%;
        text-align: center !important;
    }

    .button-style1 {
        font-size: 14px;
        padding: 10px 10px;
        min-width: 110px;
    }

    .full-screen {
        font-size: 9px;
    }

    .full-screen .h1 {
        margin-bottom: 10px;
    }

    .full-screen p {
        margin: 10px 0;
    }

    .full-screen .container {
        /* text-align: right; */
    }

    .full-screen p {
        font-size: 1.486em;
    }

    .footer [class^="fw-col-"] {
        border:none;
    }

    .testimonials-item .text {
        margin: 0 auto;
        max-width: 480px;
    }

    .testimonials-item .image {
        max-width: 450px;
        width: 100%;
        height: 280px;
        position: relative;
        margin: 0 auto;
    }

    .testimonials-item .image div {
        left: 0;
    }

    .day-item .cell,
    .day-item .circle {
        width: 115px;
        height: 115px;
    }

    .day-item .circle:before {
        width: 60px;
        margin: -3px 0 -3px -30px;
    }

    .day-item {
        font-size: 13px;
    }

    .doctor-col img {
        max-width: 480px;
        width: 80%;
    }

    .contact-col {
        border: none !important;
    }

    .full-screen .h1 {
        font-size: 3em;
    }

    .blog-item.in-row .image {
        margin-bottom: 30px;
    }

    .full-screen .blue-color {
        color: inherit;
    }

    .filter-buttons button{
        width: 100%;
    }

    .event .poster{
        float: none !important;
    }

    .event-register{
        margin-top: 20px;
    }

    .owl-nav{
        display: none;
    }

    .input-radio.mobile-full-width label, .input-checkbox.mobile-full-width label{
        width: 100%;
        margin: 3px 0;
    }
}

@media screen and (max-width: 640px){
    video{
        max-width: 100%;
    }
}
@media screen and (max-width: 380px){
}

@media print{
    .col-print-6 {
        width:50%; float:left;
    }
}