
.d-grid{
    display:grid;
}

.cols-2{
    grid-template-columns: repeat(2, 1fr);
}

.cols-3{
    grid-template-columns: repeat(3, 1fr);
}

.cols-4{
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);
}


.cell{
    display:none !important;
}

.no-bg{
    background:none;
}

.background-position-up-hover{
    background-position: center;
    background-size: cover;
    transition: all ease-in-out .5s;
    overflow: hidden;
}

.background-position-up-hover .label-to-show{
    opacity: 0;
    bottom: -150px;
    transition: all ease-in-out .5s;
}

.background-position-up-hover:hover{
    background-position: bottom;
}

.background-position-up-hover:hover .label-to-show{
    opacity: 100;
    bottom: 0px;
}


.thumbpre div{
    background-size: 100% auto;
    width:100% !important;
    background-repeat: no-repeat;
}
.width60{
    width: 60%;
}

.barm {
    width: 20px;
    height: 3px;
    background-color: white;
    margin: 5px auto;
    display:block;
}

.greyfade{
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.grab{
    cursor: grab;
}



.yellow{
    color:#EABD3F !important;
}

.green{
    color:#6EE548 !important;
}

.blue{
    color:#0D70FF !important;
}

.orange{
    color:#EF9645 !important;
}

.red{
    color:#EF4545 !important;
}

.shadow{

    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.itemmag:nth-child(even){
    background-color:#f4f4f4;
    border:1px solid #f4f4f4;
}

.itemmag:nth-child(even) .bggrey{
    background-color:#fff;
}

.itemmag:nth-child(odd){
    background-color:#fff;
    border:1px solid #f4f4f4;
}

/* The ribbons */

.corner-ribbon{
  width: 200px;
  background: #e43;
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  color: #fff;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

/* Custom styles */

.corner-ribbon.sticky{
  position: fixed;
}

.corner-ribbon.shadow{
  box-shadow: 0 0 3px rgba(0,0,0,.3);
}

/* Different positions */

.corner-ribbon.top-left{
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.corner-ribbon.top-right{
  top: 25px;
  right: -50px;
  left: auto;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.circle{
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}



.greyfade:hover{
    -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
}

.parkinglevel{
    background-image:url(/img/parkingspace.png);
    background-position: bottom left;
    background-repeat: repeat-x;
    background-color:#fff;
}

.sublevel{
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #efefef;
}

.sublevel::before{
    background:
    linear-gradient(-45deg, transparent 16px, #fff 0),
					linear-gradient(45deg, transparent 16px, #fff  0);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 22px 32px;
    content: "";
    display: block;
    height: 32px;
    width: 100%;
    position: absolute;
    top: 0;
    left:0;
}

.commonarea{
    background-image:url(/img/commonarea.png);
    background-position: bottom left;
    background-repeat: repeat-x;
    background-color:#fff;
}
.commonarea div.row{
    min-height: 130px;
}

.parkinglevel div.row{
    min-height: 75px;
}

.width40{
    width: 40%;
}

.logospace img{
    max-width: 100%;
    margin:0 auto;
}

img{
    max-width: 100%;
}
.sidebar, .sidebar a{
    color:#999;
    font-size:14px;
}

.vertical-align{
    top:50%;
}

.bgwhitetransparency{
    background-color:rgba(255,255,255,.5);
}

.uppercase{
    text-transform: uppercase;
}
.width20px{
    width:20px;
}

.leftbuttonround{
    -webkit-border-radius: 5px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -moz-border-radius: 5px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    border-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;

;}

.rightbuttonround{
    -webkit-border-radius: 0px;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius: 0px;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    border-radius: 0px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

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

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

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

.justified{
    text-align:justify;
}
.padding{
    padding:25px;
}

.padding-top{
    padding-top:25px;
}

.padding-top-xs{
    padding-top:7px;
}

.padding-small{
    padding:15px;
}

.padding-xsmall{
    padding:5px 15px;
}


.padding-large{
    padding:65px;
}

.padding-vertical-large{
    padding-top:65px;
    padding-bottom:65px;
}

.padding-vertical-xlarge{
    padding-top:125px;
    padding-bottom:125px;}

.z-index101{
    z-index: 101;
}

.z-index102{
    z-index: 102;
}

.z-index100{
    z-index: 100;
}

.z-index99{
    z-index: 99;
}

.margin{
    margin:25px;
}

.margin-vertical-small{
    margin-top:15px;
    margin-bottom:15px;
}

.margin-right-small{
    margin-right: 10px;
}

.margin-bottom{
    margin-bottom: 25px;
}

.margin-bottom-large{
    margin-bottom: 75px;
}

.margin-bottom-small{
    margin-bottom: 15px;
}

.margin-bottom-xsmall{
    margin-bottom: 5px;
}

.min-height-100vh{
    min-height:100vh;
}

.height100vh{
   height:100vh;
}

.height80vh{
   height:80vh;
}

.height70vh{
   height:70vh;
}

.height60vh{
   height:60vh;
}

.height100{
    height:100px;
}

.height80{
    height:80px;
}

.height50{
    height:50px;
}

.height250{
    height:250px;
}

.height150{
    height:150px;
}

.height160{
    height:160px;
}

.height170{
    height:170px;
}

.height300{
    height:300px;
}

.height350{
    height:350px;
}

.height285{
    height:284px;
}

.height315px{
    height:315px;
}

.height550{
    height:550px;
}

.height264{
    height:264px;
}

.padding-vertical{
    padding-top:25px;
    padding-bottom:25px;
}

.padding-vertical-small{
    padding-top:15px;
    padding-bottom:15px;
}

.padding-horizontal{
    padding-left:25px;
    padding-right:25px;
}

.border-right{
    border-right:1px solid #ccc;
}
.border-left{
    border-left:1px solid #ccc;
}

.white{
    color:#fff !important;
}

.itemmessage{
    color:#999;
}

.itemmessage:hover{
    background:#efefef;
}

.black{
    color:#000 !important;
}

.yellow{
    color:#e0ab5f;
}

.grey{
    color:#888 !important;
}

.green{
    color:#28a745;
}

.border{
    border:1px solid #ccc;
}

.no-border{
    border:none !important;
}

.overflowhidden{
    overflow: hidden;
}

.block{
    display:block;
}

.inline-block{
    display:inline-block;
}

.width30px{
    width:30px;
}

.height30px{
    height:30px;
}

.height350px{
    height:350px;
}

.height325px{
    height:325px;
}

.width50px{
    width:50px;
}

.height50px{
    height:50px;
}

.width77px{
    width:77px;
}

.height77px{
    height:77px;
}

.width100{
    width:100%;
}

.height80vh{
    height:80vh;
}

.height85vh{
    height:85vh;
}

.overlay{
    background-color:rgba(51,51,51,.5);
}

.bgimg{
    background-size:140% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.bgimgh{
    background-size:100% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.bgimgv{
    background-size:auto 120%;
    background-position: center;
    background-repeat: no-repeat;
}

.bgimgvertical{
    background-size:auto 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.relative{
    position:relative;
}

.bottom{
    bottom:-280px;
}

.bot{
    bottom:0px;
}

.absolute{
    position:absolute !important;
}

.fixed{
    position:fixed;
}



.logogrey{
     -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}
.font-size-90{
    font-size:90%;
}

.font-size-80{
    font-size:80%;
}

.light{
    font-weight: 300;
}

.regular{
    font-weight: 400;
}

.medium{
    font-weight: 500;
}

.bold{
    font-weight: 700;
}

.bggrey{
    background:#F3F3F4;
}

.no-margin-padding{
    margin: 0;
    padding: 0;
}

.round{
    -webkit-border-radius: 7px;
    border-radius: 7px;
}

.round-top{
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}



.grow:hover
{
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.itemport .hoveritemport{
    opacity: 0;
}

.itemport:hover .hoveritemport{
    opacity: 1;
}


.bgwhite{
    background-color:#fff;
}

.header{
    margin-bottom: -7px;
}

.margin-top-small{
    margin-top:10px;
}

.margin-top{
    margin-top:25px;
}

.margin-top-medium{
    margin-top:120px;
}

.margin-left-small{
    margin-left:10px;
}

.bggardient{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.74+0,0+79 */
background: -moz-linear-gradient(top, rgba(0,0,0,0.74) 0%, rgba(0,0,0,0) 79%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(0,0,0,0.74) 0%,rgba(0,0,0,0) 79%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(0,0,0,0.74) 0%,rgba(0,0,0,0) 79%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bd000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}

.textshadow{
    text-shadow:1px 1px 1px #000;
}

.margin-top{
    margin-top:40px;
}

.right{
    right: 0;
}

.left{
    left: 0;
}

.top{
    top: 0;
}

.margin-bottom{
    margin-bottom:40px;
}

.margin-bottom-medium{
    margin-bottom:30px;
}

.line-bottom {
    height: 40px;
    margin-top: 27px;
    position: relative;
}

.line-bottom:before {
    top: 100%;
    width: 5px;
    height: 5px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    -o-opacity: .5;
    opacity: .5;
    border-radius: 50%;
    content: '';
    top: 0;
    margin: auto auto auto -2px;
    background: #ccc;
    filter: alpha(opacity=50);
    -webkit-opacity: .5;
    -moz-opacity: .5;
    -ms-opacity: .5;
    display: inline-block;
    position: absolute;
    -khtml-opacity: .5;
}

.line-bottom:after {
    clear: both;
    content: " ";
    width: 1px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    -o-opacity: .5;
    opacity: .5;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ccc;
    filter: alpha(opacity=50);
    -webkit-opacity: .5;
    -moz-opacity: .5;
    -ms-opacity: .5;
    display: inline-block;
    position: absolute;
    -khtml-opacity: .5;
}

.bgblack{
    background-color:rgba(0,0,0,.5);
}

.itemfaq:even{
    background-color:#efefef;
}

@media (max-width: 1125px) {
    .cell{
        display:block !important;
    }

    .inline-block.cell {
        display: inline-block !important;
    }

    .pc{
        display:none;
    }

    .header .align-right{
        text-align:right !important;
    }


    .mainmenu .padding-small{
        padding:5px 10px !important;
    }

    .logospace{
        text-align: left;
    }


}

@media (max-width: 625px) {
    .height70vh{
        height:36vh;
    }

    .bgimgh{
        background-size:auto 190% !important;
        background-position: left;
    }

    .bgimg{
        background-size:auto 150% !important;
    }

    .mainmenu{
        margin-top:-10px !important;
        margin-bottom:20px !important;
    }

    .content .width40{
        width: 100% !important;
    }

}
