@font-face {
    font-family: 'ico-feather';
    src: url('../fonts/feather/ico-feather.eot?m2664');
    src: url('../fonts/feather/fonts/ico-feather.eot?m2664#iefix') format('embedded-opentype'), url('../fonts/feather/ico-feather.ttf?m2664') format('truetype'), url('../fonts/feather/ico-feather.woff?m2664') format('woff'), url('../fonts/feather/ico-feather.svg?m2664#ico-feather') format('svg');
    font-weight: normal;
    font-style: normal;
}

a {
    /*color: #143a53;*/
    color: #e6473f;
}
a:focus {
    outline: none;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'ico-feather' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-align-justify:before {
    content: "+";
}



/*.menu {
    position: relative;
    width: 25px;
    height: 20px;
    cursor: pointer;
    border-top: 4px solid white;
    border-bottom: 4px solid white;
    box-sizing: border-box;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.menu:before,
.menu:after {
    content: "";
    background-color: white;
    width: 25px;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform-origin: center;
    transform-origin: center;
}

#hotel-inner .menu {
    border-color: #003d64;
}

#hotel-inner .menu:before,
#hotel-inner .menu:after {
    background-color: #003d64;
}

.menu:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.menu.active {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-color: transparent;
}

.menu.active:after {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg);
}

.cross-container {
    position: absolute;
    top: 35px;
    right: 10px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.cross {
    position: relative;
    width: 25px;
    height: 20px;
    cursor: pointer;
    content: "";
    box-sizing: border-box;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.cross:before {
    content: "";
    background-color: white;
    width: 25px;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.cross:after {
    content: "";
    background-color: white;
    width: 25px;
    height: 4px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: center;
}

.cross:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.icon-cross:before {
    content: "\e117";
}*/

.btn-primary {
    background-color: #70c6c7;
    border-color: #70c6c7;
    border-radius: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: #70c6c7;
}

body {
    font-family: 'Dosis', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 23px;
    background: #f7f7f7;

    color: #143a53;
}



body{
    background: url(../images/main-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-position: 100% 80px; */

    background-position: 100% 30%;
    background-attachment: fixed;
}
/* body:not(#home){
   background-position: 100% -35vh!important;
} */
body.hasNoBanner:not(#home) {
  /* background-position: 100% -65vh !important; */
  background-position: 100% 25% !important;
}

@media (min-width: 1700px) {
  /*  body {
    background-position: 100% 160px;
  }  */
} 

#home .main:before {
    content: '';
    /*background: url(http://i.imgur.com/dJLNhFN.jpg) no-repeat left top;*/
   /* background: url(../images/banner-small-mask.png) no-repeat center top;*/
    background-size: cover;
    height: 155px;
    width: 100%;
    position: absolute;
    top: -150px;
    left: 0;
    z-index:100;
}


/********************************
*********************************

WRAPPER

*********************************
********************************/

.wrapper {
    transform: translateY(0) translate(0px, 0px);
    -webkit-transition: all .2s .1s ease-in-out;
    transition: all .2s .1s ease-in-out;
    overflow-x: hidden;
}

/*.wrapper.open {
    overflow-x: visible;
    transform: translateY(0) translate(-340px, 0px);toggleMainNav 
    -webkit-transition: all .2s .1s ease-in-out;
    transition: all .2s .1s ease-in-out;
}*/

.wrapper:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background: rgba(9, 37, 56, 0.88);
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.2s, width 0.5s 0.2s, height 0.5s 0.2s;
    transition: opacity 0.2s, width 0.5s 0.2s, height 0.5s 0.2s;
}

.wrapper.open:after {
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    z-index: 100;
}


/********************************
*********************************

HEADER

*********************************
********************************/






.header .mainNav .navListWrap {
    padding-top: 60px;
}

.header .mainNav .navListWrap .navbar-brand {
    position: absolute;
    top: 0;
    left: 20px;
    float: none;
    height: auto;
    padding: 0;
}

.header .mainNav .navListWrap .navbar-brand img {
    width: 150px;
}

.header .mainNav ul {
    padding: 0;
}

.header .mainNav ul li {
    list-style: none;
}

.header .mainNav .socialNavList li {
    display: inline-block;
    padding-right: 0px;
}
.header .mainNav .socialNavList li a {
    text-decoration: none;
}
.header .mainNav ul.mainNavList li a {
    display: block;
    padding: 10px 30px;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 1px;
    border-left: 6px solid transparent;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}



.socialNavList a {
  background: transparent;
  color: #fff;
  display: block;
  height: 35px;
  padding: 0 10px;
  position: relative;
  text-align: center;
  text-indent: -5000px;
  transition: all 0.3s ease 0s;
  width: 35px;
}

.socialNavList a:before {
  display: block;
  font-family: "FontAwesome";
  font-size: 28px;
  font-style: normal;
  font-weight: normal;
  left: 0;
  line-height: 20px;
  padding-top: 6px;
  position: absolute;
  right: 0;
  text-indent: 0;
  top: 0;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.navfacebook a:before {
  content: "\f09a";
}
.navtwitter a:before {
  content: "\f099";
}
.navyoutube a:before {
    content: "\f167";
}
.header .mainNav ul.mainNavList li a:focus,
.header .mainNav ul.mainNavList li a:active,
.header .mainNav ul.mainNavList li a:hover {
    text-decoration: none;
    background: rgba(266, 266, 266, 0.1);
}

.header .mainNav ul.mainNavList li.sel a {
    font-weight: 500;
    background: rgba(266, 266, 266, 0.1);
}

.header .mainNav ul li a i {
    font-size: 30px;
}

.searchForm.mini {
  border: medium none;
  float: none;
  width: auto;
  background-color: transparent;
}
form.searchForm *::-moz-placeholder {
  font-size: 16px;
  font-weight: 400!important;
  text-transform: capitalize!important;
}
form.searchForm *::-webkit-input-placeholder {
      font-size: 16px;
      font-weight: 400!important;
      text-transform: capitalize!important;
}
form.searchForm *:-ms-input-placeholder {
     font-size: 16px;
      font-weight: 400!important;
      text-transform: capitalize!important;
}

.searchWrap {
    background: #023c62 none repeat scroll 0 0;
    bottom: -15px;
    height: 55px;
    padding: 10px;
    position: absolute;
    right: 100px;
    transition: all 0.25s ease 0s;
    width: 350px;
    z-index: 10000;
    /* display: none;*/
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transition: transform ease 0.3s;
}
.searchWrap.slide-down {
/* display: block;*/
 transform: scale(1);
  -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.header input {
    height: 35px;
   /* min-width: 250px!important;*/
   width: 100%;
    padding-left: 5px!important;
    float: none!important;
    background-color: #fff!important;
    border: none;
    font-size: 16px!important;
    font-weight: 400!important;
    color: #000;
    
}

.header .fa {
    color: #fff;
    font-size: 2rem;
    font-weight: 100;
    padding-right: 10px;
    margin-left: 10px;
}

.mainNavList .first.lev1{
    padding-left: 5px;
}
.mainNavList .first.lev1 > a {
 background: transparent none repeat scroll 0 0;
color: #fff;
display: block;
padding: 0!important;
position: relative;
text-align: center;
text-indent: -5000px;
transition: all 0.3s ease 0s;
width: 30px;
}

.mainNavList .lev1.first a:before{
  display: block;
    font-family: "FontAwesome";
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    left: 0;
    line-height: 20px;
    padding-top: 6px;
    position: absolute;
    right: 0;
    text-indent: 0;
    top: 0;
    content: "\f015";
    line-height: 119px;
}

.mainNavList li.search-item {
    cursor: pointer;
}




.container-fluid {
    width: 90%;
}
/********************************
*********************************

MIN WIDTH BREAKPOINTS 1200px MAINLY HEADER

*********************************
********************************/

@media (min-width: 1101px) {
    .header {
        height: 120px;
        background-color: #023C62;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 999;
        margin-bottom: 40px;
    }
     .toggleMainNav {
        display: none;
    }


    .header::after {
        content: "";
        position: absolute;
        height: 50px;
        top: 110px;
        left: 0;
        right: 0;
        margin: 0 auto;
        background: url(../images/downtestt.png) no-repeat 0 0;
        background-size: cover;
        /*z-index: 100;*/
    }



    .header .mainNav {
        position: relative;
        right: auto;
        height: 120px;
        width: 100%;
        top: 0;
        z-index: 1;
    }
    .header .mainNav div.text-left {
        text-align: left;
    }
    .header .mainNav div.text-right {
        text-align: right;
    }
    .header .mainNav .mainNavList {
        float: left;
    }
    .header .mainNav .socialNavList {
        position: absolute;
        top: 40%;
        right: 85px;
    }
    .header .mainNav .mainNavList li,
    .header .mainNav .socialNavList li {
        display: inline-block;
    }
    .header .mainNav .navListWrap .navbar-brand {
        height: 120px;
        left: 5%;
        float: left;
        padding: 30px 30px 30px 10px;
    }
    .header .mainNav .navListWrap .navbar-brand img {
        width: 205px;
    }
    .header .mainNav ul.mainNavList {
        position: absolute;
        top: 0;
        right: 210px;
    }
    .header .mainNav ul.mainNavList li a {
        padding: 0 10px;
        height: 130px;
        line-height: 130px;
        margin-bottom: 0;
        border-left: 0;
        border-bottom: 6px solid transparent;
    }
    .header .mainNav ul.mainNavList li.btn a {
        height: 30px;
        line-height: 30px;
    }
    .header .mainNav ul.mainNavList li.btn a:hover,
    .header .mainNav ul.mainNavList li.btn a:focus,
    .header .mainNav ul.mainNavList li.btn a:active {
        border-bottom: 6px solid transparent;
    }
    .header .mainNav ul.mainNavList li a:focus,
    .header .mainNav ul.mainNavList li a:active,
    .header .mainNav ul.mainNavList li a:hover,
    .header .mainNav ul.mainNavList li.sel a {
        background-color: transparent;
        border-left: 0;
       /* border-bottom: 6px solid #70c6c7;*/
    }
    .header .mainNav ul li a i {
        font-size: 20px;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    .header .mainNav ul li a:hover {
        color: #e6473f;
    }


    .noBanner .header {
      position: relative;
    }
    .searchWrap i{
        display: none;
    }
    .banner.innerPage {
        margin-top: 110px;
    }
}



@media (max-width: 1360px) {
    .header .mainNav .navListWrap .navbar-brand img {
        width: 150px;
    }
    .header .mainNav .navListWrap .navbar-brand {
        padding: 40px;
    }
}

@media (min-width: 1315px) and (max-width: 1415px) {
    .header .mainNav ul.mainNavList li a {
        padding: 0 6px;
    }
}

@media (max-width: 1315px) {
 
   /* .header .mainNav .navListWrap .mainNavList li:first-child {
        position: absolute;
        top: 0;
        left: 0;
    }*/
    /*.header .mainNav ul.mainNavList {
        top: 27.5px;
        right: 65px;
    }
    .header .mainNav .socialNavList {
      right: 65px;
      top: 28%;
    }*/
   
}
@media (max-width: 1200px) {
    .header .mainNav .navListWrap .navbar-brand {
        left: 2%;
    }
    .header .mainNav ul.mainNavList {
      right: 155px;
    }
    .header .mainNav .socialNavList {
      right: 45px;
    }
}

@media (max-width: 1100px) {
    .mainNavList .search-item {
        display: none;
    }
    .searchWrap {
        position: relative;
        bottom: auto;
        width: 100%;
        display: block;
        right: 0;
         transform: scale(1);
      -webkit-transform: scale(1);
        -moz-transform: scale(1);

    }
    .header input {
        width: 80%;
    }
    .header::after {
        background: none;
    }
    
    .wrapper .header{
        bottom: 0;
        overflow-y: visible;
        position: fixed;
        right: -340px;
        top: 0;
        transition: all 0.5s ease-in 0s;
        width: -340px;
        z-index: 999;
    }
    .wrapper.open .header {
        right: 0;
    }
    .toggleMainNav {
        color: #e6473f;
        font-size: 40px;
        background: transparent;
        border: 0;
        outline: 0;
        display: block;
        padding: 10px;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1000;
    }

    .toggleMainNav .fa.fa-bars {
      font-size: 35px;
    }
    .toggleMainNav.active {
        top: 5px;
    }
    .toggleMainNav.active .fa-bars:before {
        content: "\f00d";
    }
   
  /*  .toggleMainNav-cross {
      background: rgba(0, 0, 0, 0) none repeat scroll center top;
      border: medium none;
      display: block;
      float: right;
      height: 30px;
      overflow: auto;
      position: relative;
      right: 26px;
      top: 20px;
      width: 30px;
    }*/

    .header .mainNav {
        position: absolute;
        background-color: #023c62;
        /*right: -340px;*/
        right: 0;
        height: 100%;
        width: 320px;
        top: 0;
        z-index: -10;
        padding-bottom: 50px;
    }

    .header .mainNav .navListWrap .navbar-brand {
        padding: 10px;
    }
    .header .mainNav .navListWrap .mainNavList li:first-child {
        position: static;
        margin: 30px;
    }
    .header .mainNav .navListWrap .mainNavList li:last-child {
        position: static;
        margin-bottom: 50px;
    }
    .header input {
        min-width: 0;
    }
    .header ul.socialNavList {
        text-align: center
    }
    .header .mainNav ul.mainNavList {
        text-align: center;
    }
    .header .mainNav .socialNavList .fa {
        padding: 0;
    }
    /*.header .mainNav ul {
        margin-left: -20px;
    }
    .header:after { 
        content: "";
        display: none;
        position: fixed;
        height: 50px;
        width: 950px;
        top: 450px;
        left: calc(100% - 480px);

        margin: 0 auto;
        background: url(../images/downtestt.png) no-repeat 0 0;
        background-size: cover;
        -ms-transform: rotate(90deg);
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }*/



    .isHidden {
        display: none;
    }
    .isVisible {
        display: block;
    }
}



/********************************
*********************************

BANNER VIDEO > IMG + MASK OVERLAY

*********************************
********************************/

.mask {
    position: absolute;
    height: 100px;
    width: 1920px;
    left: 0;
    top: 920px;
    /*-webkit-mask: url(http://i.imgur.com/AYJuRke.png);*/
    -webkit-mask: url(../images/mask.png);
    -webkit-mask-size: 100% 100%;
}

.mask:before {
    content: '';
    /*background: url(http://i.imgur.com/dJLNhFN.jpg) no-repeat left top;*/
    background: url(../images/main-background.png) no-repeat center top;
    background-size: cover;
    height: 1025px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
}

@media (max-width: 1100px) {
    .mask {
        top: 820px;
    }
    .mask:before {
        height: 1000px
    }
}

/**COMMENT THIS BECAUSE THEY EANT TO PALY A VIDEO*/
/*.banner {
    background-color: #f2f2f2;
     background: url(../images/image-banner.png) no-repeat center bottom;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 900px;
    position: relative;
    z-index:99;
}

.banner  img  {
    width: 630px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: calc(50% - 150px);
    z-index:99;
}
*/
.banner:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .40;
}

/**bANNER FOR VIDEO AND IMAGES**/
.banner {
    background-color: transparent;
    position: relative;
    z-index:99;

   
}

#home .banner {
     padding-bottom: 56.29%;
}

.banner div.logo-div img  {
    width: 630px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: calc(50% - 100px);
    z-index:99;
}
.banner img {
   width: 100%;
}

.banner > iframe {
  width: 100%;

  position: absolute;
  width: 100%;
  height: 100%;
}


#home .banner:before{
 /*  background: rgba(0, 0, 0, 0) url("../images/banner-bottom-mask.png") no-repeat scroll center top / cover ;  */
  background: rgba(0, 0, 0, 0) url("../images/Divide.png") no-repeat scroll center top / 100% 100% ; 
  content: "";
  left: 0;
  position: absolute;
  bottom: -50px;
  width: 100%;
  z-index: 100;
  top: auto;
  opacity: 1;
  height: 75px;
}





/**INNER PAGE BANNER*/
.banner.innerPage  {
    background: transparent;
    min-height: auto;
    position: relative;
    overflow: hidden;

}
.banner.innerPage  .text {
   color: white;
    font-size: 58px;
    font-weight: bold;
    left: 5%;
    margin: 0 auto;
    padding: 10px 25px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 50%;
    z-index: 99999;
}


@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0)  { @media {
    .banner.innerPage { 

       min-height: 0;

    }
}}
/*.banner.innerPage:before{
  background: rgba(0, 0, 0, 0) url("../images/banner-bottom-mask.png") no-repeat scroll center top / cover ;
  content: "";
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 100;
  top: auto;
  opacity: 1;
  height: 95px;
}*/

.banner.innerPage:before {
    content: "";
    left: -10px;
    position: absolute;
    width: 105%;
    height: 105%;
    background: rgba(0,0,0, 0.5);
    transition: all 2s linear;
    -moz-transition: all 2s linear;
    -webkit-transition: all 2s linear;
    -o-transition: all 2s linear;
    z-index: 100;
    bottom: auto;
}

.banner.innerPage .image {
  position: relative;
}
.banner.innerPage .image img {
  width: 100%;
  top: 0;
  position: relative;
  /*   filter: blur(4px);
  -moz-filter: blur(4px);
  -webkit-filter: blur(4px);
  -o-filter: blur(4px); */
}



@media (max-width: 767px) {
  /*  .banner {
        min-height: 600px;
        background-position: 50% 50%;
    }*/
    #home .main:before {
        height: 100px;
        top: -75px;
    }
   /* .banner img {
        width: 45%;
        top: 40%;
    }*/
}
@media (max-width: 640px) {
   /* .banner {
        min-height: 400px;
    }
     .banner img {
        width: 70%;
    }*/
}

/********************************
*********************************

SMALL BANNER FOR THE OTHER PAGES JUMBOTRON LIEK

*********************************
********************************/

.banner-small {
    background-color: #f2f2f2;
    background: url(../images/banner-small.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: 400px;
    position: relative;
}

.banner-small img {
    width: 630px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: calc(50% - 150px);
}

.banner-small:before {
    content: "";
    left: -10px;
    position: absolute;
    width: 105%;
    height: 105%;
    background: inherit;
    z-index: 0;
    filter: blur(4px);
    -moz-filter: blur(4px);
    -webkit-filter: blur(4px);
    -o-filter: blur(4px);
    transition: all 2s linear;
    -moz-transition: all 2s linear;
    -webkit-transition: all 2s linear;
    -o-transition: all 2s linear;
}

.banner-small h1 {
    text-align: left;
    position: absolute;
    top: 15%;
    left: 20%;
    font-size: 80px;
    font-size: 8rem;
    text-transform: uppercase;
    font-weight: bold;
    width: 300px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}


/********************************
*********************************

MAIN (INTRODUCTION)

*********************************
********************************/

.main {
    background-color: transparent;
    /*min-height: 600px;*/
    min-height: auto;
    text-align: center;
    position:relative;
    padding-top: 30px;
}

#stay .main {
    padding-bottom: 175px;
}

.main img {
    padding: 0px;
    padding-bottom: 0px;
}

#stay .main .text img {
    padding-bottom: 50px;
}

.main .text h1 {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 75%;
    font-size: 58px;
    padding: 40px 0 30px;

    color: #003d64;
    text-align: center;
}
.main .whatson-carousel {
    padding-top: 20px;
}

#stay .main h1 {
    padding-top: 100px;
}

#hotel-inner .main h1 {
    padding-top: 75px;
    color: #003d64;
}

#hotel-inner .main .breadcrumbs {
    background: white;
    margin-top: 0;
    height: 110px;
}

.main .breadcrumbs h3 {
    position: absolute;
    font-size: 22px;
    letter-spacing: -1px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: -5px;
    left: 150px;
    color: #143a53;
}
.breadcrumb li.sel a {
    cursor: default;
    text-decoration: none;
}

#hotel-inner .breadcrumbs h3 {
    margin-top: 55px;
}

.main .breadcrumbs h3 span {
    color: #e6473f;
}

.main .text p ,body#angling .content .inner p {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 65%;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
    padding: 15px 0;
}

body#angling .content .inner img {
  margin: 10px auto!important;
  display: block;
  text-align: center;
}
#stay .main:before {
    content: '';
    /*background: url(http://i.imgur.com/dJLNhFN.jpg) no-repeat left top;*/
    background: url(../images/banner-small-mask.png) no-repeat center top;
    background-size: cover;
    height: 200px;
    width: 100%;
    position: absolute;
    top: 360px;
    left: 0;
}
div#dccom_gdImageGallery {
    padding: 0 15px;
}
div#dccom_gdImageGallery div.gdImage {
    border: 0 none !important;
    min-width: 33.3333% !important;
    width: 33.333% !important;
}

@media (max-width:1100px) {
    .main .text h1 {
      font-size: 4rem;
      padding: 25px 0;
    }
    #stay .main:before {
        top: 260px;
    }

}



/********************************
*********************************

ACTIVITIES CIRCLES

*********************************
********************************/

.activities {
    padding-top: 75px;
}

.activities {
    padding-top: 75px;
}

.activities .responsive-circle {
    font-size: 42px;
    font-weight: 500;
    margin: 0 auto 75px;
    width: 90%;
}

.activities .responsive-circle::after {
    border-radius: 100%;
    content: "";
    display: block;
    height: 0;
    margin-bottom: 20px;
    padding-bottom: 100%;
    width: 100%;
}

.activities .image {
  border-radius: 50%;
  overflow: hidden;
}
.activities .image img {
    /*border-radius: 50%;*/
    width: 100%;
}

.activities .responsive-circle div {
    color: white;
    float: left;
    line-height: 1em;
   /* margin-top: -.3em;
    padding-top: 50%;*/
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    text-shadow: 3px 3px #000000;
    font-weight: 900;
    font-size: 34px;
    font-size: 3.6rem;
}


.circle-inner::before {
    content: "";
    position: absolute;
    width: 92%;
    height: 100%;
    top: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url(../images/layer-whattodo.png) no-repeat 0 0;
    background-size: 100%;
    z-index: 0;
}

.village-map .circle-inner::before,
.festivals .circle-inner::before {
    width: 94.5%;
}

.where-to-stay .col-sm-4 {
    padding-left: 5px;
    padding-right: 5px;
}
.where-to-stay .circle-inner::before,
.wild-atlantic-way .circle-inner::before {
    width: 90%;
}

.responsive-circle .circle-inner p {
    z-index: 2;
    position: relative;
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.activities .responsive-circle .circle-inner p {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    padding: 0 20px;

    max-height: 107px;
    overflow: hidden;
}
.what-to-do .circle-inner::before {
    background: url(../images/layer-whattodo.png) no-repeat 0 0;
    background-size: 100%;
}

.festivals .circle-inner::before {
    background: url(../images/layer-festivals.png) no-repeat 0 0;
    background-size: 100%;
}

.where-to-stay .circle-inner::before {
    background: url(../images/layer-wheretostay.png) no-repeat 0 0;
    background-size: 100%;
}

.eat-drink .circle-inner::before {
    background: url(../images/layer-eatdrink.png) no-repeat 0 0;
    background-size: 100%;
}

.village-map .circle-inner::before {
    background: url(../images/layer-villagemap.png) no-repeat 0 0;
    background-size: 100%;
}

.wild-atlantic-way .circle-inner::before {
    background: url(../images/layer-wildatlantic.png) no-repeat 0 0;
    background-size: 100%;
}

.responsive-circle.what-to-do::after,
.responsive-circle.eat-drink::after,
.responsive-circle.where-to-stay::after,
.responsive-circle.wild-atlantic-way::after,
.responsive-circle.festivals::after,
.responsive-circle.village-map::after {
    -webkit-clip-path: polygon(29% 6%, 27% 5%, 27% 5%, 26% 5%, 25% 5%, 24% 8%, 23% 8%, 24% 9%, 25% 9%, 23% 11%, 24% 11%, 23% 11%, 21% 11%, 20% 11%, 20% 10%, 19% 11%, 19% 13%, 19% 14%, 20% 15%, 14% 15%, 13% 19%, 13% 16%, 12% 19%, 8% 22%, 9% 23%, 10% 24%, 9% 25%, 7% 26%, 6% 27%, 8% 28%, 6% 30%, 5% 32%, 4% 33%, 4% 35%, 5% 39%, 3% 45%, 1% 52%, 2% 54%, 4% 57%, 4% 61%, 3% 71%, 4% 76%, 4% 77%, 1% 80%, 3% 89%, 3% 94%, 7% 96%, 40% 100%, 66% 100%, 100% 100%, 100% 21%, 98% 1%, 56% 0%, 36% 1%);
    clip-path: polygon(29% 6%, 27% 5%, 27% 5%, 26% 5%, 25% 5%, 24% 8%, 23% 8%, 24% 9%, 25% 9%, 23% 11%, 24% 11%, 23% 11%, 21% 11%, 20% 11%, 20% 10%, 19% 11%, 19% 13%, 19% 14%, 20% 15%, 14% 15%, 13% 19%, 13% 16%, 12% 19%, 8% 22%, 9% 23%, 10% 24%, 9% 25%, 7% 26%, 6% 27%, 8% 28%, 6% 30%, 5% 32%, 4% 33%, 4% 35%, 5% 39%, 3% 45%, 1% 52%, 2% 54%, 4% 57%, 4% 61%, 3% 71%, 4% 76%, 4% 77%, 1% 80%, 3% 89%, 3% 94%, 7% 96%, 40% 100%, 66% 100%, 100% 100%, 100% 21%, 98% 1%, 56% 0%, 36% 1%);
}

.what-to-do::after {
    background: url("../images/circle-whattodo.jpg") repeat scroll 0 0 / cover;
}

.festivals::after {
    background: url("../images/circle-festival.jpg") repeat scroll 0 0 / cover;
}

.where-to-stay::after {
    background: url("../images/circle-wheretostay.jpg") repeat scroll 0 0 / cover;
}

.eat-drink::after {
    background: url("../images/circle-eatdrink.jpg") repeat scroll 0 0 / cover;
}

.village-map::after {
    background: url("../images/circle-villagemap.jpg") repeat scroll 0 0 / cover;
}

.wild-atlantic-way::after {
    background: url("../images/circle-wildatlantic.jpg") repeat scroll 0 0 / cover;
}


/********************************
*********************************

WHERE TO STAY CARDS

*********************************
********************************/

#stay .main a {
    text-decoration: none;
}

.responsive-card {
    margin: 25px 0;
    width: 98%;
    min-height: 450px;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.19), 0 2px 5px rgba(0, 0, 0, 0.13);
}
.responsive-card a, .detail-box a {
    color: #143a53;
}
.responsive-card a:hover, .detail-box a:hover {
    color:#e6473f;
}

.rooms .responsive-card {
    padding-bottom: 75px;
    margin: 25px 0;
    width: 98%;
    /*min-height: 675px;*/
    min-height: 615px;
    background: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.19), 0 2px 5px rgba(0, 0, 0, 0.13);

    position: relative;
}
.rooms .responsive-card.subcat-card {
     min-height: 530px;
}

.rooms .responsive-card.subcat-card {
    padding-bottom: 240px;
}
.rooms .responsive-card.subcat-card .detail-box {
  bottom: 100px;
  left: 0;
  position: absolute;
  right: 0;
}


.where-to-stay .responsive-card {
     position: relative;
     padding-bottom: 80px;
}
.responsive-card-background {
    width: auto;
    min-height: 230px;
    background: url(../images/hotel-guest.jpg);
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

 .responsive-card h1 {
    font-size: 31px;
    font-weight: 400;
    padding: 10px 5px 0;
    color: #003d64;
    width: 80%;
    margin: 15px auto;
}

.content .inner p {
  line-height: 33px;
  font-size: 18px;
}
.responsive-card p {
    padding:  2px 10px 0;
    color: #143a53;
    line-height: normal!important;
}

.responsive-card button, .responsive-card span.but{
    padding: 15px;
    margin-bottom: 15px;
    /*background: #E6473F; */
    background: #143a53; 
    border: none;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}


.rooms .responsive-card button, .where-to-stay .responsive-card button,
.rooms .responsive-card span.but, .where-to-stay .responsive-card span.but{
    position: absolute;
    bottom: 15px;
  /*  left: 0;
    right: 0;*/
    left: 80px;
    right: 80px;
    margin: 0 auto;
}

.where-to-stay a:hover  {
    text-decoration: none;
}
.where-to-stay a:hover button, .where-to-stay a:hover span.but, .responsive-card button:hover, .responsive-card span.but:hover {
   /*background: #143A53; */
    background: #E6473F;
    color: #fff;
}

.responsive-card .no-detail {
    background: url(../images/logo-abstract-dark.png);
    background-size: cover;
    width: 110px;
    height: 40px;
    margin: auto;
}
.where-to-stay  .responsive-card h1 {
    font-weight: 400;
    font-size: 31px;
}

.details .panel-body h1 {
  text-align: left;
  margin: 15px 0;
}
.details .panel-body {
    background-color: #eee;
}

.detail-box {
    background: #FCFBFA;
    border: 1px solid #FBE4E2;
    padding: 10px;
    margin: 15px 20px;
    margin-bottom: 10px;
}
.details .panel-body .detail-box {
    background-color: transparent;
    border: none;
    margin-top: 0;
    padding-top: 0;
}
.panel-body .detail-box {
    margin-left: 0;
    margin-right: 0;
}
#hotel-inner .detail-box {
    background: transparent;
    border: none;
    padding: 0px;
    margin: 5px 10px;
    margin-bottom: 0px;
}

.detail-box ul,
.detail-box li {
    list-style: none;
    padding: 0;
    text-align: left;
    padding-left: 5px;
    margin-bottom: 0;
}

.detail-box li {
    color: #143a53;
    font-size: 18px;
    font-weight: 500;
    padding: 5px;
}

.detail-box i {
    padding-right: 15px;
    color: #E6473F;
}
.detail-box i.fa-phone {
  padding-right: 21px;
}
.detail-box i.fa-mobile {
  padding-right: 28px;
}
.detail-box i.fa-map-marker {
  padding-right: 25px;
}
.detail-box .socialNavList {
    float: right;
}
.detail-box .socialNavList li {
    display: inline-block;
}
.detail-box .socialNavList li a{
    color: #94a5b6;
    height: 25px;
    width: 25px;
}
.detail-box .socialNavList li a:hover {
    color: #e6473f;
}
.detail-box .socialNavList a:before {
    font-size: 20px;
}

.hotel-info {
    padding-top: 25px;
    padding-bottom: 60px;
}

.hotel-info .details {
    margin: 0 25px 25px 25px;
    width: 100%;
  /*  height: 475px;
    max-height: 475px;*/
    background: #fff;
}
.hotel-info.info-details .details {
    height: auto;
    max-height: 100%;
}

.hotel-info .details .panel-group .panel {
    border: none;
}

.hotel-info .details .panel-default > .hotel-info .details .panel-heading {
    padding: 0;
    border-radius: 0;
    color: #143a53;
    background-color: #EEE;
    border-color: red;
}

.hotel-info .panel-default > .panel-heading {
    color: #003D64;
    background: #fff;
    border-bottom: 2px solid #F7F7F7;
    font-size: 28px
}

.hotel-info .details .panel-title {
    font-size: 14px;
}

#hotel-inner .hotel-info h1 {
    padding-left: 15px;
    padding-top: 5px;
    text-align: left;
    font-size: 28px;
}

.hotel-info .details .panel-title > a {
    display: block;
    padding: 15px;
    text-decoration: none;
    font-size: 20px;
    text-align: left;
}

.hotel-info .details .more-less {
    float: right;
    color: #e6473f;
}

.hotel-info .details #collapseOne .panel-body {
    font-size: 18px;
    text-align: left;
    padding: 25px;
    background: #eee;
}
.hotel-info .details #collapseOne >div {
    padding: 10px 25px;
}
.hotel-info .details .panel {
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, .05);
    /* box-shadow: 0 1px 1px rgba(0, 0, 0, .05); */
}

#hotel-inner .panel-body img {
    width: 80%;
    padding-left: 15px;
    padding-top: 10px;
}

.details .panel-group .panel-heading + .panel-collapse > .panel-body {
    border-top: 1px solid #F7F7F7;
}
.long-text p{
    width: 90%;
}

#messageContainer {
    position: relative;
    padding: 15px 40px;
    background-color: rgba(2, 60, 98, 0.3);
}
#messageContainer h3 {
    margin-top: 0;
}
#messageContainer .close, #messageContainer i.fa-check-circle-o {
    position: absolute;
    right: 10px;
    top: 20px;
    opacity: 1;
}
#messageContainer i{
    font-size: 25px;
    color: #023C62;

}
#messageContainer i.fa-check-circle-o {
    left: 10px;
    right: auto;
}


#ja-current-content #generalmap {
    margin: 10px auto 0!important;
}

#generalmap {
    background-repeat: no-repeat;
    background-size: 100%;
}
#generalmap button {
  height: 50px;
  margin-bottom: 5px;
}

#searchRefineLink .btn {
    border: 2px solid #e6473f;
    font-size: 18px;
}
#searchRefineLink .btn:hover {
    border-color: #023C62;
}
#dcCom_siteSearchResults h2 {
  padding: 15px 0 20px;
}
.dcCom_sitesearchResultsWrapper ul li {
  list-style: none;
}


.ytp-watch-later-button-visible.ytp-share-button-visible .ytp-title, .ytp-chrome-top-buttons {
  display: none!important;
}


.hotel-info .contact-row h1 {
    padding: 0 15px;
}


@media (max-width: 1200px) {
  /*  .responsive-card p {
        padding: 10px 5px;
    }*/
    #stay .responsive-card h1 {
        font-size: 31px;
        font-weight: 400;
        padding-top: 8px;
        margin: 13px auto;
    }
    .detail-box i {
        padding-right: 10px;
    }
    .detail-box i.fa-phone {
      padding-right: 15px;
    }
}
@media (max-width: 1091px){
    .hotel-info{
        margin-bottom: 200px;
    }
    .hotel-info.info-details{
        margin-bottom: 20px;
    }
}
@media (max-width: 990px) {
   /* .responsive-card p {
        padding: 15px 10px;
    }*/
    #stay .responsive-card h1 {
        font-size: 28px;
        padding-top: 8px;
        margin: 13px auto;
    }
    .activities .responsive-circle div {
        font-size: 2.5rem;
    }
    .detail-box li {
        color: #143a53;
        font-size: 16px;
        font-weight: 500;
        padding: 5px;
    }
    .detail-box i {
        padding-right: 5px;
    }
    .detail-box i.fa-phone {
      padding-right: 9px;
    }
}
@media (max-width: 845px) {
    
    .hotel-info .details {
        margin: 0 auto;
    }
    
}
@media (max-width: 768px) {
    .responsive-card p {
        padding: 5px 15px;
        font-size: 20px;
    }
    #stay .responsive-card h1 {
        font-size: 38px;
        padding-top: 8px;
        margin: 13px auto;
    }
   
   
}

@media (max-width: 462px) {
    .responsive-card p {
        padding: 15px 10px;
        font-size: 18px;
    }
    #stay .responsive-card h1 {
        font-size: 36px;
        padding-top: 8px;
        margin: 13px auto;
    }
    .activities .col-md-4.col-xs-6 {
        width: 100%;
        float: none;
    }
    .activities .responsive-circle:after {
        padding-bottom: 118%;
    }
    .activities .responsive-circle {
         margin-bottom: 30px;
    }

}


/********************************
*********************************

WHAT'S ON CAROUSEL

*********************************
********************************/


.whatson {
    padding-bottom: 40px;
}

.whatson-carousel {
    width: 75%;
    margin: 0 auto;

    opacity: 0;
}
.whatson-carousel.slick-initialized{
    opacity: 1;
}

.whatson-carousel .slide,
.event-list .slide {
    position: relative;
    border-radius: 2px;
    text-align: left;
    background: white;
    min-height: 565px;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.19), 0 10px 10px rgba(0, 0, 0, 0.13);
}
.event-list a {
    color: #143a53;
}
.whatson-carousel .slide {
    min-height: 450px;
}

.whatson-carousel .slide .description,
.event-list .slide .description {
    padding: 0 20px;
}

.whatson-carousel .slide h1,
.event-list .slide h1 {
    color: #143a53;
    font-size: 2.5rem;
    height: 68px;
    overflow: hidden;
}
.whatson-carousel .slide h1 {
    font-size: 36px;
    height: 81px;
}
.whatson-carousel .slide h2,
.event-list .slide h2 {
    color: #e6473f;
    font-size: 2rem;
    margin-top: 7px;
    height: 33px;
}

.whatson-carousel .slide p,
.event-list .slide p {
    font-size: 1.8rem;
    font-weight: 500;
    color: #555;
}

.whatson-carousel .slide .note,
.event-list .slide .note {
    background: red;
    position: absolute;
    top: 30px;
    right: 30px;
    /* width: 29%; */
    width: auto;
    min-width: 29%;
    padding: 0 5px;
    height: 45px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    line-height: 45px;
}

.whatson-carousel .slide button,
/* .whatson-carousel .slide .description a, */
.event-list .slide button ,
.event-list .slide span.but,
.news-item .details  .read-more,

.whatson-carousel .slide .description a.btn-blue {
    font-size: 1.8rem;
    font-weight: 100;
    padding: 10px 15px;
    margin: 15px 5px 10px 0px;
     background: #143A53; 
    border-radius: 3px;
    border: none;
    color: #fff;

    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.whatson-carousel .slide button a,
 .event-list .slide button a ,
  .event-list .slide span.but a {
     color: #fff;
}
.whatson-carousel .slide .description a.btn-blue:hover {
     background-color: #e6473f; 
   /*  background: #143A53; */
}
.whatson-carousel .slide a.btn-blue:hover ,
.event-list .slide a:hover  {
    text-decoration: none;
}

.whatson-carousel .slide a:hover button,
.event-list .slide a:hover button ,
.event-list .slide a:hover span.but,
.news-item .details  .read-more:hover {
    color: #fff;
    background: #e6473f;
}

.event-list .slide span.but, .whatson-carousel .slide .description a.btn-blue {
    position: absolute;
    bottom: 5px;
}

.whatson-carousel .slick-slide {
    margin: 0 50px;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 70px;
}

.whatson-carousel .slick-list {
    margin: 0 -50px;
}

.whatson-carousel .slick-prev {
    background: url(../images/slider-left.png) no-repeat;
    background-size: cover;
    height: 50px;
    width: 50px;
    top: calc(50% - 25px);
    left: -8%;
}

.whatson-background {
    width: auto;
    min-height: 245px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
}

.whatson-carousel .slick-next {
    background: url(../images/slider-right.png) no-repeat;
    background-size: cover;
    height: 50px;
    width: 50px;
    top: calc(50% - 25px);
    right: -8%;
}

.whatson-carousel .slick-prev:before,
.whatson-carousel .slick-next:before {
    color: transparent;
}

.whatson-carousel .slick-dots li button:before {
    content: "";
}

.whatson-carousel .slick-dots li button {
    border-radius: 10px;
    background: #617d93;
}

.whatson-carousel li.slick-active button {
    background: #e6473f;
}



.main .text > div {
  padding-bottom: 12px;
}


.rooms a:hover{
  text-decoration: none;
}
/********************************
*********************************

ACCOMODATION CAROUSEL

*********************************
********************************/

.accomodation-carousel {
    max-width: 500px;
    margin: 0 auto;
    /*height: 475px;*/
    margin-bottom: 100px;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

.accomodation-thumb-slider .slick-slider-item {
    padding: 5px;
}
.accomodation-thumb-slider .slick-track {
    margin: auto;
}
.accomodation-thumb-slider {
    margin: auto;
}

.accomodation-thumb-slider .slick-active img {
    outline: 2px solid transparent;
}

.accomodation-thumb-slider .slick-active img:focus {
    outline-color: transparent;
    outline-width: 0px;
}

/*.accomodation-thumb-slider .slick-current img {
    outline-color: #e6473f;
}*/
.accomodation-carousel {
    padding-bottom: 72px;
}
.accomodation-carousel .accomodation-thumb-slider {
    max-width: 350px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: -72px;
}

.accomodation-carousel .accomodation-thumb-slider .slick-slider-item {
    padding: 2px;
}

.slick-slider {
    margin-bottom: 0px;
}

.controls {
    text-align: center;
    font-family: monospace;
    font-weight: bold;
}

.accomodation-carousel .slick-prev {
    background: url(../images/slider-left.png) no-repeat;
    background-size: cover;
    height: 30px;
    width: 30px;
    /*top: calc(50% + 15px);*/
    top: 50%;
    left: -12.5%;
}

.accomodation-carousel .slick-next {
    background: url(../images/slider-right.png) no-repeat;
    background-size: cover;
    height: 30px;
    width: 30px;
   /* top: calc(50% + 15px);*/
    top: 50%;
    right: -12.5%;
}
.accomodation-carousel .slick-dots {
    display: none;
    visibility: hidden;
    opacity: 0;
}
.accomodation-carousel .slick-prev:before,
.accomodation-carousel .slick-next:before {
    color: transparent;
}

.accomodation-carousel .slick-dots li button:before {
    content: "";
}

.accomodation-carousel .slick-dots li button {
    border-radius: 10px;
    background: #617d93;
    width: 15px;
    height: 15px;
    position: absolute;
    top: -140px;
    right: -120px;
}

.accomodation-carousel li.slick-active button {
    background: #e6473f;
}

#stickycookiePolicy  {
  padding: 10px 40px;
  background-color: #023C62;
  background-color: rgba(2, 60, 98, 0.7);
  color: #fff;
  font-size: 1.8rem;
  text-align: center;

}
#stickycookiePolicy  a {
    color: #fff;
    text-decoration: underline;
    padding: 0 10px;
}
#stickycookiePolicy  a:hover {
    color: #e6473f;
    text-shadow : none;
}
#stickycookiePolicy  a.close {
    opacity: 0.7;
}
#stickycookiePolicy .inner a, #stickycookiePolicy .inner a.close {
    background: #023c62 none repeat scroll 0 0;
    border-radius: 6px;
    color: white;
    display: inline-block;
    float: none;
    font-size: 16px;
    line-height: 20px;
    opacity: 1;
    padding: 6px;
    text-decoration: none;
    font-weight: 400;
}
#stickycookiePolicy .inner a:hover, #stickycookiePolicy .inner a.close:hover {
    opacity: 0.7;
}


@media (max-width: 1091px) {
    .accomodation-carousel .slick-dots li button {
        display: none;
    }
    .accomodation-carousel .slick-prev {
        height: 50px;
        width: 50px;
        top: 150px;
        left: 12.5%;
    }
    .accomodation-carousel .slick-next {
        height: 50px;
        width: 50px;
        top: 150px;
        right: 12.5%;
    }
    .whatson-carousel .slick-slide {
      margin: 0 20px 50px;
    }
}
@media (max-width: 845px) {
    .accomodation-carousel .slick-prev, .accomodation-carousel .slick-next {
        top: 180px;
    }
    #stickycookiePolicy  {
        padding: 10px 15px;
    }
    #stickycookiePolicy a.close {
        font-size: 17px;
        float: none;
    }

}



/**Inner page***/

#path {
    position: relative;
    margin-bottom: 45px;
}
#path ul {
    z-index: 100;
    position: relative;
    left: 5%;
    top: 12px;
    margin-right: 10px;
    width: 92%;
}
#path:before {
  background: rgba(0, 0, 0, 0) url("../images/breadcrumb-mask.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left;
  content: "";
  left: 0;
  position: absolute;
  bottom: -40px;
  width: 100%;
  z-index: 100;
  top: auto;
  opacity: 1;
  height: 95px;
}

.breadcrumb {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border-radius: 0;
  padding: 0;
}
.breadcrumb li a {
    font-size: 20px;
    color: #143a53;
    text-transform: uppercase;
    padding-right: 5px;
    font-weight: 500;
}
.breadcrumb li.sel a {
    color: #e6473f;
}
.breadcrumb > li + li:before {
    color: #143a53;
    font-size: 20px;
}

h1#pageTitle {
  color: #003d64;
  font-size: 60px;
  text-align: center;
  margin-bottom: 25px;
}
.noPageBanner #path:before {
    bottom: -25px;
}
.noPageBanner #path ul {
  top: 5px;
}

.event-list .slide {
    width: 33.3333%;
    float: left;
    margin: 15px 0;
    padding : 0 15px;
    background: transparent;
    box-shadow: none;
}
.event-list .slide .event-item{
   background: #fff none repeat scroll 0 0;
    -webkit-box-shadow: 1px 0px 5px 3px rgba(0, 0, 0, 0.19);
        -moz-box-shadow: 1px 0px 5px 3px rgba(0,0,0,0.19);
        box-shadow: 1px 0px 5px 3px rgba(0,0,0,0.19);

        position: relative;
        padding-bottom: 55px;
}
/*.event-list .slide .description {
    background: #fff;
}*/
.event-list .slide h1 {
    margin-top: 0;
    padding-top: 10px;
}


.event-field {
    text-align: left;
}
.event-field .date, .event-field .location  {
    color: #143a53;
    padding-bottom: 8px;
    font-size: 20px; 
}
.event-field .location{
    font-size: 18px;
}
.event-field img {
    margin: 10px;
}

/********************************
*********************************

FOOTER

*********************************
********************************/

.footer {
    background-color: #003d64;
    min-height: 600px;
    padding-bottom: 75px;
    margin-top: 90px;
    position: relative;
}

.footer .container-fluid {
   width: 90%;
}

.footer:before {
    content: "";
    position: absolute;
    height: 79px;
    /*bottom: calc(0% + 650px);*/
    top: -55px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: url(../images/uptest.png) no-repeat 0 0;
    background-size: cover;
    z-index: 5;
}

.footer h1 {
    text-transform: uppercase;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.footer ul {
    margin-bottom: 5px;
}

.footer ul,
.footer li {
    list-style: none;
    padding-left: 0;
    text-transform: uppercase;
    padding-bottom: 12px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.footer a {
    color: #fff;
}
.footer li:hover,
.footer a:hover {
    color: #e6473f;
    text-decoration: none;
}

.footer .fb-page {
    background: #f4f4f4;
    text-align: center;
    position: absolute;
    vertical-align: middle;
    height: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.footer .signature img {
    width: auto;
    max-height: 54px;
}
.login-btn, .button.log-out {
    text-transform: uppercase;
    font-size: 2.2rem;
    font-weight: 500;
    border: none;
    background: #e6473f;
    color: #fff;
    border-radius: 3px;
    text-align: center;
    padding: 10px 15px;
    display: inline-block;
    margin: 10px 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/** Dasbord
************************/
.button.log-out {
     font-size: 2rem;
}
.button.log-out:hover {
  opacity: 0.8;
}
#member-details .left {
    overflow: auto;
}
#member-details .right {
    float: right;
}

#member-details .member-name {
    font-size: 18px;
    margin-bottom: 15px;
}
#member-details .member-name span {
    font-size: 16px;
    font-weight: 600;
}
#member-details .member-product ul {
    margin: 10px 0;
    padding-left: 0;
}
#member-details .member-product li {
    margin-bottom: 3px;
    list-style: none;
    position: relative;
    padding-left: 20px;
}
#member-details .member-product li:after {
    position: absolute;
    content: ">";
    font-size: 20px;
    top: 0;
    left:0;
    color: #023C62;
}

#member-details .member-product li a {
     -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #143a53;
}
#member-details .member-product li.selected a,
#member-details .member-product li a:hover {
    color: #e6473f;
}
.member-product > div {
  font-size: 18px;
  margin-bottom: 10px;
}
.member-product .items_heading {
    font-weight: 600;
}
.member-product div > a.button {
  border: 1px solid #003d64;
  border-radius: 3px;
  padding: 3px 10px;
  display: inline-block;
}
.member-product div > a.button:hover {
    border-color: #e6473f; 
}
.product-name {
  font-weight: 600;
}
.dynamic-tab-pane-control .tab-row .tab,
.dynamic-tab-pane-control .tab-row .tab.selected {
    height: 24px!important;
    font-size: 12px!important;
}
#formButtons_bot > input {
  border: 1px solid;
  border-radius: 3px;
  color: #23527c;
  font-weight: 600;
  padding: 5px 18px;
}
#formButtons_bot > input:hover {
    background: #fff;
}
.columnValue.r120 li {
  list-style: outside none none;
}
#tab1_Description textarea#productsummaryudiText {
    width: 600px;
}

input#productCoordinates ,#dccom_map_canvas {
    width: 300px;
}
.cRecord {
    background : rgb(252, 252, 254) none repeat scroll 0 0;
    border: 1px solid rgb(145, 155, 156);
    padding: 10px 20px;
}
#txt_recordId {
    padding-bottom: 10px;
    display: none;
}
#msgDiv {
    position: relative!important;
    height: 35px!important;
    background-color: #023c62!important;
    padding-left: 20px!important;
    top: 0!important;
}
.udiForm .tab-page input[type="text"] {
    line-height: 22px;
}
.cke_1{
  width: 100%!important;
}
#tni_announceimage > input[type="text"] , #tni_eventimage > input[type="text"], input[name="eventvenue"]{
  width: 400px;
}
.columnValue.r120 ul {
    padding-left: 0;
}
.dashboard-form {
    position: relative;
}





form.udiForm .columnValue {
    font-size: 12px!important;
}

.contentWrapWide  .content, .contentWrap .content {
    padding: 0 10px;

}

.footer .login button ,
.footer .login a {
    color: #fff;
    font-size: 17px;
    font-weight: normal;
    border: none;
    /*background: #e6473f;
    border-radius: 3px;
    position: absolute;
    top: -125px;
    text-align: center;
    text-transform: uppercase;
    width: 120px;
    height: 50px;
     */

   
    padding-top: 7px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/*.footer .login button:hover{
    background: #fff;
   
}*/

.footer .login button:hover a, .footer .login a:hover {
     color: #e6473f;
}

#map {
    height: 300px;
    width: 25vw;
}

#hotel-location {
    height: 215px;
    width: 100%;
    z-index: 999999999;
}

.gdLogin_wrap .gdLogin_bottom > p {
    display: none;
}

/* Sidebar
*****************************/
.hdLHS {
    margin-bottom: 20px;
}
ul.pageNavList  {
    padding-left: 0;
}
.pageNavList > li {
  border-bottom: 1px solid #ccc;
  overflow: hidden;
  position: relative;
}
.pageNavList > li > a {
    display: inline-block;
    font-size: 19px;
    padding: 8px 5px;
    position: relative;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.5s ease 0s;
    width: 100%;
    z-index: 10;
    color: #143a53;
}
.pageNavList > li > a:hover {
    color: #e6473f;
}
.pageNavList > li.onPath {
  background: #023C62 none repeat scroll 0 0;
  border-bottom: 1px solid #ffced5;
}
.pageNavList > li.onPath a {
  color: #fff;
}
.pageNavList > li .sub-menu li {
    list-style: none;
}
.pageNavList > li .sub-menu li a {
      font-size: 18px;
       padding: 5px;
       display: block;
} 

#ja-current-content #generalmap {
  width: 100%!important;
}

.subcat-card h1 {
    width: 100%;
}
.dccom_gdNews  article {
    margin-bottom: 15px;
}

.dccom_gdNews  article .details  h3 {
    margin-top: 0;
}

.localService-wrapper {
 /* -webkit-columns: 2 50px;
  -moz-columns: 2 50px;
  columns: 2 50px;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px; */
  padding: 20px;
}

.localService-wrapper  h3 {
  margin-bottom: 5px;
  margin-top: 20px;
}
.localService-wrapper .col-sm-6 > h3:first-child {
    margin-top: 0;
}

#dccom_gdImageGallery .gdImage {
    width: 25%!important;
    margin-left: 0!important;
    margin-right: 0!important;
}
#dccom_gdImageGallery .gdImage img {
    width: 100%!important;
}

.news-item .details  .read-more {
  text-transform:capitalize;
  padding: 5px 20px;
}
.news-item img.featured-image {
    margin-bottom: 15px;
}

form.udiForm div.r120 {
    margin-left: 135px!important;
}

.dccom_gdNews {
    margin-top: 15px;
}

.news-item .fa-chevron-right {
  padding-left: 10px;
}

#dcCom_siteSearchResults .tabs li {
    list-style: none;
    border: 1px solid #9e001a;
}

iframe {
  max-width: 100%;
}









@media  (max-width: 1600px) {
    /* body {
     background-position: 100% 0;
       }  */
   /* body:not(#home) {
     background-position: 100% -20vh !important;
   } */
   .whatson-carousel .slick-slide {
      margin: 0 20px 50px;
    }
    .whatson-carousel .slick-next {
        right: -10%;
    }
    .whatson-carousel .slick-prev{
        left: -10%;
    }
}

@media (max-width: 1440px) {
   /*  body {
     background-position: 100% -80px;
   } */
    #generalmap {
        background-size: auto;
    }
}

@media (max-width: 1200px) {
   /*  body {
     background-position: 100% -205px;
   } */
    .footer:before {
        bottom: 1025px;
    }
    .footer .login button {
        top: -495px;
    }
    .footer .col-half {
        width: 50%;
        float: left;
    }
    .footer #map {
        width: 40vw;
    }
}

@media (max-width: 1100px) {
    /* body:not(#home) {
      background-position: 100% -30vh !important;
    } */
    .banner div.logo-div img {
      top: calc(65% - 150px);
      width: 440px;
    }
    .footer::before {
        bottom: 1020px;
    }
    .header .mainNav ul.mainNavList li.first a {
        background-color: transparent;
        width: 100%;
        text-align: center;
    }
    .mainNavList {
        margin-top: 25px;
    }
    .mainNavList .lev1.first a:before {
        line-height: 0;
    }
    .header .mainNav .navListWrap .mainNavList li:first-child {
        margin: 0;
    }
   /* .header .mainNav .navListWrap .mainNavList li:last-child {
        margin: 15px 5px;
    }*/
    form.searchForm {
        margin-left: 0!important;
    }
    .main .text p ,  body#angling .content .inner p{
        width: 85%;
    }
    .activities .responsive-circle .circle-inner p {
        top: 31%;
    }
}

@media (max-width: 991px) {
    .sidebar .inner {
      display: none;
    }
    .sidebar.open .inner {
      display: block;
    }
    .togglePageNav  {
      background: #003d64 none repeat scroll 0 0;
      color: #fff;
      display: block;
      font-size: 20px;
      overflow: hidden;
      padding: 10px 40px 10px 20px;
      position: relative;
      text-decoration: none;
      transition: all 0.5s ease 0s;
      width: 100%
      z-index: 10;
      margin-top: 20px;
    }
    a.togglePageNav:hover, a.togglePageNav:focus {
        color: #fff;
    }

    .togglePageNav  .fa {
      color: #fff;
      cursor: pointer;
      display: block;
      font-size: 22px;
      height: 22px;
      line-height: 22px;
      position: absolute;
      right: 25px;
      text-align: center;
      top: 12px;
      width: 22px;
      z-index: 10;
    }
    .footer::before {
        bottom: 1425px;
    }
    .footer #map {
        width: 100%;
    }
   /* .footer .tes {
        top: 50px;
        padding-bottom: 250px;
        margin-bottom: 150px;
    }*/
    .footer .fb-page {
        width: 550px;
    }
    .footer .fb-page {
        text-align: left;
        padding-left: 15px;
    }
    .dccom_gdNews article .details p{
        line-height: 25px;
    } 
    .news-item .details .read-more {
        margin-top: 5px;
    }
    .dccom_gdNews article .details {
        padding-left: 8px;
    }
    .dccom_gdNews article .details h3 {
        margin-bottom: 5px;
    }
}
@media (max-width: 767px) {
    .footer {
        position: relative;
        margin-top: 20px;
    }
    .footer::before {
      bottom: auto;
      top: -20px;
      height: 35px;
    }
    .subcat-card h1 {
        height: auto;
        width: 100%;
        font-size: 30px;
    }


}

.gm-style-iw * {
    display: block;
    width: 100%;
}

.gm-style-iw h4,
.gm-style-iw p {
    margin: 0;
    padding: 0;
}

.gm-style-iw a {
    color: #4272db;
}


@media (max-width: 1200px) {

    .footer .login button {
        top: -495px;
    }
}

@media (max-width: 992px) {
  /*   body {
    background-position: 100% -435px;
  } */
    .activities .responsive-circle .circle-inner p {
      max-height: 102px;
    }
}

@media (max-width: 990px) {
    .footer .login button {
        top: -865px;
    }
}

@media (max-width: 768px) {
   /*  body {
     background-position: 100% -55vh;
   } */
    .footer h1 {
        font-size: 2rem;
    }
    .footer .login button {
        top: -950px;
    }
     .footer .login button {
        position: relative;
        top: 0;
        width: 100%;
    }
    .footer .fb-page {
        position: relative;
        height: auto;
        background: transparent;
        width: 100%;
    }
    .footer .tes {
      margin-bottom: 0px;
      padding-bottom: 100px;
       width: 100%;
       clear: both;
       float: none;
    }
    .footer .col-half.col-md-4, .footer #map {
      width: 100%;
      clear: both;
      float: none;
    }
     .footer .fb-page {
      padding-left: 0;
    }
    .whatson-carousel .slide .description, .event-list .slide .description {
      padding: 0 13px;
    }
    .whatson-carousel .slide h1, .event-list .slide h1 {
        overflow: hidden;
    }

}

@media (max-width: 640px) { 
    .activities .responsive-circle .circle-inner p {
      max-height: 77px;
    }
}

@media (max-width: 580px) { 
    .articlesList .news-item figure,  .articlesList .news-item div.details  {
        width: 100%;
        margin-bottom: 10px;
    }
    .articlesList .news-item figure {
      margin: 10px auto;
    }
}
@media (max-width: 460px) { 
   /*  body {
     background-position: 100% -155vh;
   } */
   /*  body:not(#home) {
     background-position: 100% -75vh !important;
   } */
    body#home {
        background-size: cover;
    }
    .footer .col-half {
      width: 100%;
      clear: both;
      float: none;
    }
    
}

.footer .signature {
    margin-top: 70px;
}

.footer .signature h3 {
    text-align: right;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.8rem;
}

#formButtons_bot > input[value="Delete"] {
  display: none;
}









@media (max-width:1450px) {
    .whatson-carousel .slide h1 {
        /*height: 120px;*/
    }
}
@media (max-width:1280px) and (min-width:768px) {
    #generalmap .pubs-bars, #generalmap .where-to-eat, #generalmap .bed-breakfast-hostels, #generalmap .hotels-guesthouses, #generalmap .bed-breakfast-br-hostels,
   #generalmap .hotels-br-guesthouses {
        right: 470px!important;
    }
}

@media (max-width:1200px) {
   
    .whatson-carousel .slick-next {
        right: -12%;
    }
    .whatson-carousel .slick-prev {
        left: -12%;
    }
    .footer .login {
        margin-top: 15px;
    }
    .footer .login button, .footer .login a {
        position: relative;
        top: 0;
        display: block;
    }
    .responsive-card h1 {
        font-size: 32px;
    }
    .rooms .col-sm-4 {
        width: 50%;
    }
    .hotel-info .details {
        margin-right: 5px;
        margin-left: 5px;
    }
     .hotel-info .details .panel-body .col-xs-4 {
        width: 25%;
     }
     .hotel-info .details .panel-body .col-xs-8 {
        width: 75%;
     }
     .whatson-carousel .slide h1 {
        font-size: 28px;
        height: 64px;
        overflow: hidden;
    }
    #generalmap div > div {
        width: 225px!important;
    }

}

@media (max-width: 1091px) {
    .whatson-carousel .slide/*, .event-list .slide*/ {
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.19), 0 10px 10px rgba(0, 0, 0, 0.13);
    }
    .breadcrumb li a {
        font-size: 20px;
    }

    .accomodation-carousel {
        margin-bottom: 20px;
    }
    .accomodation-carousel .accomodation-thumb-slider{
        padding-top: 15px;
    }
    .accomodation-carousel .slick-prev, .accomodation-carousel .slick-next {
      top: -26%;
    }
    .accomodation-carousel .slick-next, .accomodation-carousel .slick-prev {
       height: 30px;
       width: 30px;
    }
    .accomodation-carousel .slick-next {
        right: 2.5%;
    }
    .accomodation-carousel .slick-prev {
        left: 2.5%;
    }
    .accomodation-carousel {
        height: auto;

    }
}
@media (max-width: 1023px) {
    .whatson-carousel .slick-list {
      margin: 0 10px;
    }
   /* .whatson-background{
        min-height: 295px;
    }*/
   /* .whatson-carousel .slide {
        min-height: 635px;
    }*/

    .whatson {
      padding-bottom: 70px;
    }
    .where-to-stay .col-sm-4, .event-list .slide {
      width: 50%;
      float: left;
    }
    .event-list .slide {
        min-height: 100%;
    }
    .event-list .slide .event-item {
      margin-bottom: 10px;
    }
   
    .event-list .slide {
      box-shadow: none;
      background-color: none;
    }
    .whatson-carousel .slide h1 {
      font-size: 28px;
    }
    .whatson-carousel .slide h2 {
        font-size: 18px;
    }
    .whatson-carousel .slide h2 {
      height: 39px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
  
    .hotel-info .details .panel-body .col-xs-8, .hotel-info .details .panel-body .col-xs-4 {
        padding-left: 3px;
        padding-right: 3px;
    }
    .details .panel-body .detail-box {
        padding-left: 0;
        padding-right: 0;
    }
    .details .panel-body .detail-box i {
      padding-right: 10px;
    }
    .details .panel-body .detail-box li {
        font-size: 16px;
    }
    .detail-box i.fa-phone {
      padding-right: 14px !important;
    }
}
@media (max-width:850px) {
    .whatson-carousel .slide, .event-list .slide {
        max-width: 100%;
    }
     .whatson-carousel .slide h1 , .whatson-carousel .slide h2{
        height: auto;
     }
}

@media (max-width:850px) {
    .whatson-carousel .slide {
        min-height: 100%;
    }
    div#dccom_gdImageGallery div.gdImage {
        width: 33.333%!important;
        min-width: 33.333%!important;
        height: auto!important;
    }
}

@media (max-width:767px) {
    h1, .h1, h1#pageTitle {
      font-size: 31px;
    }

    .breadcrumb li a {
        font-size: 16px;
    }
    .breadcrumb > li + li:before {
      padding: 0 1px;
    }
    .main .text h1 {
      font-size: 3rem;
    }
    .main .text p ,  body#angling .content .inner p{
        width: 85%;
    }
    .whatson-carousel .slick-slide {
      margin: 0 0px 50px;
    }
    
    .event-list .slide {
        margin-bottom: 20px;
    }
    .rooms .col-sm-4 {
        width: 100%;
        float: none;
        padding: 0 23%;
    }
    .hotel-info {
        margin-bottom: 0;
    }
    .hotel-info .details {
        height: auto;
    }
    .responsive-card p {
      padding: 5px 15px;
    }
    .rooms .responsive-card button, .where-to-stay .responsive-card button, .rooms .responsive-card span.but, .where-to-stay .responsive-card span.but {
        left: 40px;
        right: 40px;
    }

    #member-details .left {
      overflow: hidden;
    }
    .member-product {
        margin-top: 15px;
    }
    .hide-mobile {
        display: none;
    } 
    .footer {
      padding-bottom: 30px;
    }
    .footer .tes {
        padding-bottom: 35px;
    }
    .footer .signature {
      margin-top: 0px;
    }
    #path:before {
        bottom: -27px;
        height: 75px;
    }
    .banner.innerPage .text {
      font-size: 32px;
      top: 34%;
    }

}
@media (max-width:640px) {
    .banner div.logo-div img {
     top: calc(80% - 100px);
     width: 200px;
    }
    /* .banner.innerPage {
       min-height: 220px;
    }
    .banner.innerPage img {
      height: 220px;
    } */
    .where-to-stay .col-sm-4 ,
    .event-list .slide{
      width: 100%;
      float: none;
    }
      .rooms .col-sm-4 {
        padding: 0 17%;
      }
      .hotel-info .details .panel-title > a {
        padding: 5px;
      }
    .event-list .slide h1, .event-list .slide h2 {
        height: auto;
    }
    .rooms .responsive-card {
        min-height: auto;
    }
    .whatson-background {
      min-height: 230px;
    }


    .tab-pane .columnValue input,
    input#productCoordinates ,#dccom_map_canvas ,
    .columnValue.r120 > table{
        width: 100%!important;
    }
    form.udiForm fieldset {
        margin-right: 0!important;
        margin-left: 0!important;
    }
    .button.log-out {
      font-size: 16px;
      padding: 5px 10px;
    }
    .cRecord {
      padding: 10px;
    }
    form.udiForm div.r120 {
      margin-left: 0!important;
    }
    form.udiForm div.l120 {
        float: none!important;
    }
    form.udiForm input[type="text"], form.udiForm div.r120 textarea {
        width: 100%!important;
    }
    form.udiForm div.r120 img {
        width: 100%!important;
    }
    .localService-wrapper {
    -webkit-columns: 1;
      -moz-columns: 1;
      columns: 1;
    }

}
@media (max-width:520px) {
    .rooms .col-sm-4 {
        padding: 0 8%;
    }
    .hotel-info .details .panel-body .col-xs-8 {
        width: 100%;
    }
    .hotel-info .details .panel-body .col-xs-4  img{
        display: none;
    }
     .hotel-info .details .panel-body  .detail-box li {
      font-size: 16px;
    }
     div#dccom_gdImageGallery div.gdImage {
        width: 50%!important;
        min-width: 50%!important;
    }
}
@media (max-width:480px) {
    .footer .col-half {
        text-align: center;
    }
    .responsive-card button, .responsive-card span.but {
      padding: 10px 25px;
    }
    .whatson-carousel .slide .note, .event-list .slide .note {
        width: auto;
        height: auto;
        line-height: 25px;
        padding: 3px 5px;
        top: 10px;
        right: 10px;
    }
    .event-list .slide span.but {
        padding-top: 5px;
        padding-bottom: 5px;
        right: 5px;
    }
    .fb-page.fb_iframe_widget iframe, .fb_iframe_widget span {
      width: 100% !important;
    }
    #dcCom_gdSearch_SectionLinks .tabs ul a {
      padding: 4px 10px;
    }
    #dcCom_siteSearchResults h2 {
      font-size: 26px;
    }

}
@media (max-width:460px) {
   /* .toggleMainNav {
        top: 45px;
    }*/
    .whatson-carousel .slick-next, .whatson-carousel .slick-prev {
        width: 30px;
        height: 30px;
    }
    .detail-box {
        padding: 10px 0;
    }
    .detail-box li {
        font-size: 15px;
    }
    .detail-box i {
      padding-right: 5px;
    }
   /* .event-list .slide .note {
        width: 29%;
    }*/
   /* form.udiForm div.l120 {
        width: 85px!important;
    }*/
   
    #dccom_map_canvas {
        height: 250px!important
    }
  /*  .whatson-carousel .slide .note, .event-list .slide .note {
        width: 40%;
    }*/
    .fb-page.fb_iframe_widget iframe {
      width: 100%!important;
    }
    .detail-box.detail-subcat-card {
        margin-right: 15px;
        margin-left: 15px;
    }
    .detail-box.detail-subcat-card ul{
        padding: 0;
    }
    #dccom_gdImageGalleryPagesTable td.title strong {
        display: none;
    }
    #stickycookiePolicy .inner {
        font-size: 16px;
    }
}


#requiredFunctionality {
   position:fixed;
   top:0;
   left:0;
   width:100%;
   background-color: #000000;
   background: rgba(0,0,0,0.7);
   z-index: 2000;
   color: #ccc;
   text-align: center;
   font-size: 20px;
   padding: 20px 10px;
   transition: .3s all ease;
}

#requiredFunctionality:hover {
   background: #000;
   color: #fff;
}

#requiredFunctionality a {
   color: #ccc;
   display: inline-block;
   margin: 0 0 0 5px;
}


