/*
Theme Name: Regal WP
Theme URI: http://themeforest.net/user/gomalthemes/portfolio
Author: HBK
Author URI: http://themeforest.net/user/gomalthemes
Description: Regal – Hotel is WordPress theme exclusively built for hotel, hostel, private accommodation, bed and breakfast or resort websites.
Version: 3.1.0
License: GNU General Public License version 1.0
License URI: https://themeforest.net/licenses/standard
Text Domain: regal-wp
Tags: one-column, two-columns, three-columns,four-columns, right-sidebar, custom-colors, custom-menu, featured-images, theme-options, translation-ready
*/

/**
 * Table of Contents
 *
 * 01. Font Families
 * 02. Color & Background Colors
 * 03. Font Sizes
 * 04. Spacings
 * 05. Buttons
 * 06. Transitions
 * 07. Miscellaneous
 */
/**** ************************************* **/
/**	01. Font Families
*************************************************** **/
.mp-semi-bold{
    font-family: 'MyriadPro-Semibold';
}
.mp-bold{
    font-family: 'MyriadPro-Bold';
}
.ms-bold{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.ms-regular{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
.mp-regular{
    font-family: 'MyriadPro-Regular';
}
.mp-light{
    font-family: 'MyriadPro-Light';
}
.color-white {
    color: #fff !important;
}
.color-white h1,.color-white h2,.color-white h3,.color-white h4,.color-white h5,.color-white h6,.color-white p{
    color: #fff !important;
}
.color-half-white{
    color: #cccccc;
}
.color-dark {
    color: #333333;
}
.bg-half-white {
    background: #f7f7f7;
}
.bg-dark-grey {
    background: #333333;
}
.bg-white {
    background: #fff;
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-700 {
    font-weight: 700;
}
/** ************************************* **/
/**	02. Font Sizes
*************************************************** **/
.font-11 {
    font-size: 11px;
}
.font-13 {
    font-size: 13px;
}
.font-15 {
    font-size: 15px;
}
.font-16 {
    font-size: 16px;
}
.font-18 {
    font-size: 18px;
}
.font-20{
    font-size: 20px;
}
.font-21{
    font-size: 21px;
}
.font-22{
    font-size: 22px;
}
.font-37 {
    font-size: 37px;
}
.font-50 {
    font-size: 50px;
}
.font-60 {
    font-size: 60px;
}
.font-84 {
    font-size: 84px;
}
.font-172 {
    font-size: 172px;
}
.text-italic{
    font-style: italic;
}
.text-bold {
    font-weight: 700;
}
/** ************************************* **/
/**	02. Spacings
*************************************************** **/
.space10 {
    float: left;
    width: 100%;
    height: 10px;
}
.space20 {
    float: left;
    width: 100%;
    height: 20px;
}
.space30 {
    float: left;
    width: 100%;
    height: 30px;
}
.space40 {
    float: left;
    width: 100%;
    height: 40px;
}
.space50 {
    float: left;
    width: 100%;
    height: 50px;
}
.space60 {
    float: left;
    width: 100%;
    height: 60px;
}
.space70 {
    float: left;
    width: 100%;
    height: 70px;
}
.space80 {
    float: left;
    width: 100%;
    height: 80px;
}
.space90 {
    float: left;
    width: 100%;
    height: 90px;
}
.space100 {
    float: left;
    width: 100%;
    height: 100px;
}
.space110 {
    float: left;
    width: 100%;
    height: 110px;
}
.space120 {
    float: left;
    width: 100%;
    height: 120px;
}
.space130 {
    float: left;
    width: 100%;
    height: 130px;
}
.space140 {
    float: left;
    width: 100%;
    height: 140px;
}
.space150 {
    float: left;
    width: 100%;
    height: 150px;
}
/** ************************************* **/
/**	02. Buutons
*************************************************** **/
.btn {
    font-size: 16px;
    background: #002c6d;
    font-family: 'Montserrat', sans-serif;
    color: #fff !important;
    padding: 13px 23px;
    overflow: hidden;
    border: 0;
    letter-spacing: 1px;
    border-radius: 0;
    text-transform: uppercase;
}
.btn:hover {
    overflow: hidden;
    color: #fff !important;
}
.btn.btn-white {
    background: #fff;
    color: #333333;
}
.btn.btn-white:hover {
    border-color: #333333;
}
.btn.extra-btn-padding {
    padding-left: 40px;
    padding-right: 40px;
}
/** 05 Transitions **/
/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
    color: white;
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
/* Sweep To Right */
.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
    color: white;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* Sweep To Left */
.hvr-sweep-to-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-sweep-to-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
    color: white;
}
.hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff url(images/preloader.gif) no-repeat center center;
}
.padding-top-130{
    padding-top: 130px;
}
.margin-top-0{
    margin-top: 0;
}
.margin-bottom-50{
    margin-bottom: 50px;
}
.padding-80-50 {
    padding: 80px 0 50px 0;
}
.w-100 {
    width: 100%;
}
.vc_row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
@media (min-width: 768px){
    div.col-2 {
        width: 16.66666667% !important;
    }
    div.col-3 {
        width: 25% !important;
    }
    div.col-4 {
        width: 33.33333333% !important;
    }
    div.col-5 {
        width: 41.66666667%;
    }
    div.col-6 {
        width: 50% !important;
    }
    div.col-7 {
        width: 58.33333333% !important;
    }
    div.col-8 {
        width: 66.66666667% !important;
    }
    div.col-9 {
        width: 75% !important;
    }
    div.col-10 {
        width: 83.33333333% !important;
    }
}
.service-box.text-left,.service-box.text-left p {
    text-align: left;
}
.service-box.text-center,.service-box.text-center p {
    text-align: center;
}
.service-box.text-right,.service-box.text-right p {
    text-align: right;
}
.title.title-style2.text-right:before,.title.title-style2.text-right:after {
    right: 0;
    left: auto;
    margin-left: auto;
}
.title.title-style2.text-left:before,.title.title-style2.text-left:after {
    left: 0;
    margin-left: auto;
}
#site-header img {
    width: 100%;
}
.page-template-default .review-box {
    margin-top: 75px;
}
.brcmb a {
    color: #fff;
}
/* Theme Check */
.widget .screen-reader-text {
    display: none;
}
.widget select {
    display: inline-block;
    width: 100%;
    padding: 8px 5px;
    height: 50px;
}
.widget #searchform #s {
    width: 100%;
    max-width: 345px;
    padding: 8px 5px;
    display: inline-block;
    height: 50px;
    margin-bottom: 15px;
}
input[type=submit] {
    font-size: 16px;
    background: #002c6d;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding: 13px 23px;
    overflow: hidden;
    border: 0;
    letter-spacing: 1px;
    border-radius: 0;
    text-transform: uppercase;
}
.widget #searchform input[type=submit]:hover {
    background: #000;
}
table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.75em;
    table-layout: fixed;
    width: 100%;
}

table, th, td {
    border: 1px solid #d1d1d1;
}
.widget_calendar caption {
    font-weight: 900;
    margin-bottom: 1.75em;
}
td,th {
    line-height: 2.6923076923;
    padding: 0;
    text-align: center;
}
.widget_calendar td#today {
    background: #002c6d;
    color: #fff;
}
dl {
    margin: 0 20px;
}
dt {
    font-weight: bold;
}
dd {
    margin: 0 0 20px;
}
address {
    font-style: italic;
    margin: 0 0 24px;
}
abbr[title] {
    border-bottom: 1px dotted;
}
code, kbd, pre, samp {
    font-size: 14px;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
.post-password-form input[type="password"]{
    padding: 8px 5px;
    height: 50px;
}
img.aligncenter {
    margin: 5px auto;
}
img.size-full, img.size-large {
    height: auto;
    max-width: 100%;
}
figure.wp-caption.alignleft, img.alignleft {
    margin: 5px 20px 5px 0;
}
.alignleft {
    float: left;
}
figure.wp-caption.alignright, img.alignright {
    margin: 5px 0 5px 20px;
}
.alignright {
    float: right;
}
.wp-caption {
    max-width: 100%;
    height: auto;
}
.wp-caption-text{
    color: #333;
    margin-top: 10px;
}
.bypostauthor{
    position: relative;
}
.gallery-caption {
    padding: 5px 1%;
    font-size: 90%;
}
.tag-none {
    display: none;
}
.ui-datepicker table {
	border-bottom: 0;
    border-left: 0;
    border-right: 0;
}