.oculer-price{
    display: inline-flex;
    margin-left: -98px;
    font-weight: 600;
}

 button a:hover{
  text-decoration: none;
}
.product-discount-label{display:block;padding: 4px 7px 4px 28px;color:#fff;background-color:#22463C;position:absolute;top:10px;right:31px;-webkit-clip-path:polygon(34% 0,100% 0,100% 100%,0 100%);clip-path:polygon(34% 0,100% 0,100% 100%,0 100%);z-index: 1}
.price span{color:#999;font-size:14px;font-weight:700;text-decoration:line-through;margin-left:7px;display:inline-block}
.head{
  font-size: 22px;
}
@charset "UTF-8";
:root {
  --star-size: 30px;
  --star-color: #ccc;
  --star-background: #fc0;
  --star-border:1px solid #fc0;
}
body{
  width:100%;
  background: #f7f7f7
} 
.Stars {
  --percent: calc((var(--rating) / 5)*100%);
  display: inline-block;
  font-size: var(--star-size);
  
  line-height: 1;
}
.Stars::before {
  content: '★★★★★';
  letter-spacing: 3px;
 
  background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#pheading{
  margin-top:8%; margin-bottom: 3%;background-color: #e9ecef;
}
#procont{
  padding: 50px 100px;
}
.p-desc{
  padding:50px 50px 50px 0px;
}
.mz-hint>span{
  display: none;
}

.cd-product-viewer-wrapper {
  text-align: center;
  padding: 2em 0;
}
.cd-product-viewer-wrapper > div {
  display: inline-block;
}
.cd-product-viewer-wrapper .product-viewer {
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
}
.cd-product-viewer-wrapper img {
  /* this is the image visible before the image sprite is loaded */
  display: block;
  position: relative;
  z-index: 1;
}
.cd-product-viewer-wrapper .product-sprite {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  /* our image sprite is composed by 16 frames */
  width: 1600%;
  background-image: url('img/mako_black_360.jpg');
  background-size: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.cd-product-viewer-wrapper.loaded .product-sprite {
  /* image sprite has been loaded */
  opacity: 1;
  cursor: ew-resize;
}

.cd-product-viewer-handle {
  position: relative;
  z-index: 2;
  width: 60%;
  max-width: 300px;
  border-radius: 50em;
  margin: 1em auto 3em;
  height: 4px;
  background: #4d4d4d;
}
.cd-product-viewer-handle .fill {
  /* this is used to create the loading fill effect */
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: #b54240;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
}
.no-csstransitions .cd-product-viewer-handle .fill {
  display: none;
}
.loaded .cd-product-viewer-handle .fill {
  /* image sprite has been loaded */
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.2s 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.2s 0.3s;
  transition: transform 0.3s, opacity 0.2s 0.3s;
}
.cd-product-viewer-handle .handle {
  position: absolute;
  z-index: 2;
  display: inline-block;
  height: 44px;
  width: 44px;
  left: 0;
  top: -20px;
  background: #06357D url(img/cd-arrows.svg) no-repeat center center;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(18, 66, 64, 0.3), 0 0 20px rgba(0, 0, 0, 0.2);
  /* replace text with image */
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: transparent;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  -webkit-transition: box-shadow 0.2s;
  -moz-transition: box-shadow 0.2s;
  transition: box-shadow 0.2s;
}
.cd-product-viewer-handle .handle:active {
  box-shadow: 0 0 0 0 rgba(181, 66, 64, 0), 0 0 20px rgba(0, 0, 0, 0.2);
}
.loaded .cd-product-viewer-handle .handle {
  /* image sprite has been loaded */
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  -webkit-animation: cd-bounce 0.3s 0.3s;
  -moz-animation: cd-bounce 0.3s 0.3s;
  animation: cd-bounce 0.3s 0.3s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  cursor: ew-resize;
}

@-webkit-keyframes cd-bounce {
  0% {
    -webkit-transform: translateX(-50%) scale(0);
  }
  60% {
    -webkit-transform: translateX(-50%) scale(1.1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
  }
}
@-moz-keyframes cd-bounce {
  0% {
    -moz-transform: translateX(-50%) scale(0);
  }
  60% {
    -moz-transform: translateX(-50%) scale(1.1);
  }
  100% {
    -moz-transform: translateX(-50%) scale(1);
  }
}
@keyframes cd-bounce {
  0% {
    -webkit-transform: translateX(-50%) scale(0);
    -moz-transform: translateX(-50%) scale(0);
    -ms-transform: translateX(-50%) scale(0);
    -o-transform: translateX(-50%) scale(0);
    transform: translateX(-50%) scale(0);
  }
  60% {
    -webkit-transform: translateX(-50%) scale(1.1);
    -moz-transform: translateX(-50%) scale(1.1);
    -ms-transform: translateX(-50%) scale(1.1);
    -o-transform: translateX(-50%) scale(1.1);
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}

* {
  margin: 0;
  padding: 0;
  outline: none;
}




.card {
  border-radius: 25px;
  box-shadow: -7px 7px 1px rgba(0, 0, 0, 0.1);
}

.card-head {
  position: relative;
  height: 162px;
  background-color: #ffffff;
  /*background: #fa782e;
  /* Old browsers */
  /*background: -moz-linear-gradient(-45deg, #22326c 8%, #4186c6 83%);
  /* FF3.6-15 */
  /*background: -webkit-linear-gradient(-45deg, #22326c 8%, #4186c6 83%);
  /* Chrome10-25,Safari5.1-6 */
  /*background: linear-gradient(30deg, #22326c 8%, #4186c6 83%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#fa782e', endColorstr='#c82930', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  border-radius: 25px 25px 0 0;
}

.card-logo {
  width: 55px;
  margin: 20px;
}

.product-img {
  position: absolute;
  left: 0;
  width: 125%;
  margin-left: 20px;
  margin-top: 21px;
  cursor: pointer;
}

.product-detail {
  padding: 0 20px;
  font-size: 11px;
  color: #fff;
}

.product-detail h2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.back-text {
  display: inline-block;
  font-size: 75px;
  font-weight: 900;
  margin-left: -7px;
  margin-top: -12px;
  opacity: 0.1;
  color:#0e1013;
  cursor: pointer;
}

.card-body {
  height: 80px;
  background: #f1f1f1;
  border-radius: 0 0 25px 25px;
  cursor: pointer;
}

.product-desc{
  margin-top: -14px;
}

.product-title {
  padding: 0px 0px 0px 0px;
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.prod-price{
  font-size: 14px;
}

.product-title b {
  font-weight: 900;
  letter-spacing: 0px;
}

.badge {
  position: relative;
  font-size: 10px;
  font-weight: 300;
  color: #fff;
  background: #11e95b;
  padding: 2px 5px;
  border-radius: 4px;
  top: -2px;
  margin-left: 5px;
}

.product-caption {
  display: block;
  padding: 0 20px;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.product-rating {
  padding: 0 20px;
  font-size: 11px;
  margin-left:-175px;
}

.product-rating i.grey {
  color: #acacab;
}

.product-size h4 {
  font-size: 11px;
  padding: 0 21px;
  margin-top: 15px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.ul-size {
  margin-left: 15px;
}

.ul-size li {
  list-style: none;
  float: left;
  margin-right: 20px;
}

.ul-size li a {
  display: inline-block;
  text-decoration: none;
  font-size: 11px;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  text-align: center;
  line-height: 23px;
  color: #000;
}

.ul-size li a.active {
  background: #f35e3d;
  color: #fff;
}

.product-size:before,
.product-size:after {
  content: '';
  display: block;
  clear: both;
}

.product-color h4 {
  font-size: 11px;
  padding: 0 0px;
  margin-top: 20px;
  margin-right:178px; 
  /*padding-bottom: 20px;*/
  text-transform: uppercase;
}

.ul-color {
  margin-left: 0px;
}

.ul-color li {
  list-style: none;
  float: left;
  margin-right: 20px;
}

.ul-color li a {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 100%;
}

.ul-color li a.black {
  background: #000;
}

.ul-color li a.mako-black {
  background: #000;
}
.ul-color li a.mako-blue {
  background: #232864;
}
.ul-color li a.mako-brown {
  background: #684c4c;
}
.ul-color li a.mako-yellow {
  background: linear-gradient(to bottom,#eac31d 50%, #040503 50%);
}
.ul-color li a.mako-red{
    background: linear-gradient(to bottom,#ec2428 50%, #040503 50%);
}


.ul-color li a.diwon-black {
  background: #000;
}
.ul-color li a.diwon-brown {
  background: #674b4b;
}
.ul-color li a.diwon-pink {
  background: #b57887;
}
.ul-color li a.diwon-blue {
  background: linear-gradient(to bottom,#272560 50%, #080a09 50%);
}
.ul-color li a.diwon-red{
    background: linear-gradient(to bottom,#e92226 50%, #080a09 50%);
}


.ul-color li a.lao-black {
  background: #000;
}
.ul-color li a.lao-blue {
  background: #1e3064;
}
.ul-color li a.lao-brown {
  background: #684c4c;
}
.ul-color li a.lao-purple {
  background: #704e98;
}
.ul-color li a.lao-red{
    background: linear-gradient(to bottom,#ee2325 50%, #040503 50%);
}


.ul-color li a.zulu-black {
  background: #000;
}
.ul-color li a.zulu-blue {
  background: linear-gradient(to bottom,#030402 50%, #272560 50%);
}


.ul-color li a.active:after {
  position: absolute;
  content: '';
  display: inline-block;
  /*border: 1px solid #f35e3d;*/
  width: 24px;
  height: 24px;
  border-radius: 100%;
  margin-left: -5px;
  margin-top: -5px;
}

.product-price {
  position: absolute;
  background: #06357D;
  padding: 3px 16px;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  font-weight: 200;
  color: #fff;
  border-radius: 7px;
  margin-top: -42px;
  margin-left: 30px;
  box-shadow: -10px 20px 15px -10px #06357d47;
  cursor: pointer;
}

.product-price b {
  margin-left: 5px;
}



.yt
{
  position: fixed;
  padding:7px 10px 3px 10px;
  top: 5px;
  right: 5px;
  background: rgba(0,0,0,0.1);
}

.yt:hover
{
  background: rgba(0,0,0,0.2);
}
.btn-review{
  background-color: #06357D;
  border:1px solid #06357D;
  color: #ffffff;
}
.btn-review:hover{
  background-color: #ffffff;
  border:1px solid #06357D;
  color: #06357D;
  margin-left: 50px;
}

.linelft{
  width: 475px;
  height: 3px;
  float: left;
  background-color: #22463c;
}
.linergt{
  width: 410px;
  height: 3px;
  float: right;
  background-color: #22463c;
}

.cetimg{
  width: 50%;
  /*height: 50%;*/
  margin-left: 100px;
}

.oculer-cont{
  width: 320px;
  height: 270px;
  margin: 30px auto;
}
.yglass1{
	margin-left:20px;
}
.yglass2{
	margin-left:45px;
}
.yglass3{
	margin-left:30px;
}
.yglass4{
	margin-left:38px;
}
.btn-add{
  background-color: #ffffff
}
.btn-add:hover{
  background-color: #06357d;
  color:#ffffff;
}
.btn-buy{
  background-color: #06357d;
  color:#ffffff;
}
.btn-buy:hover{
  background-color: #ffffff;
  color:#06357d;
}
#myVideo {
  width: 100%;
}
#mainMenu .navbar-nav li .nav-link {
  color: #18297b!important;
}
.drp-dropdown > a::after {
    border-top: 10px solid #18297b!important;
}
.search-icon {
    color: #18297b!important;
}
.cartct {
    background-color: #18297b!important;
}
.cartctwhite {
    background-color:#97bdf773!important;
    color: #18297b!important;
}
.mylivechat_buttonround{
  background-color: #18297b!important;
}
.btn-review {
    background-color: #18297b!important;
    border-color: #18297b!important;
    color: #ffffff!important;
}
.btn-review:hover {
    background-color:#97bdf724!important;
    border-color: #18297b!important;
    color: #18297b!important;
}
.linergt {
  background-color: #18297b!important;
}
.linelft {
  background-color: #18297b!important;
}
.drp-dropdown a {
    color: #18297b!important;
} 
.at-risk{
  width: 100%;
}
.ingimg{
  width: 100%;
}
.title_about{
      /*margin: -10px 0px 0px -30px;*/
      margin: 0;
}
.title_about h6{
  font-size: 16px;
    font-weight: 600;
    color: #18297b;
    text-align: center;
}
.block{
      margin: 0px 0px 47px 0px;
}
.oculer_a{
  color: #000000!important;
  text-decoration: none!important;
}
.oculer_a:hover{
  color: #000000!important;
  text-decoration: none!important;
}
#oculer{
  padding: 20px 0px;
  margin-right:-25px;
}



@media (max-width: 1280px) and (min-width: 1025px){
  
  .linelft, .linergt{
    width: 320px!important;
  }
  .oculer-cont > .mako{
    left: -75px;
  }
  .oculer-cont > .lao{
    left: -75px;
  }
  .product-img {
    left: -36px;
  }
    .yglass1{
      margin-left:0px;
      width: 100%;
    }
    .yglass2{
      margin-left:0px;
      width: 100%;
    }
    .yglass3{
      margin-left:0px;
      width: 100%;
    }
    .yglass4{
      margin-left:0px;
      width: 100%;
    }
    .ul-color li a {
      position: relative;
      margin-left: -9px;
      left: -75px;
  }

}


@media (min-width: 768px) and (max-width: 1024px) {

  .linelft, .linergt{
    width: 207px!important;
    }
    .yglass1{
      margin-left:0px;
      width: 100%;
    }
    .yglass2{
      margin-left:0px;
      width: 100%;
    }
    .yglass3{
      margin-left:0px;
      width: 100%;
    }
    .yglass4{
      margin-left:0px;
      width: 100%;
    }
    .title_about h6 {
        font-size: 12px;
    }
    .main_ul_clr{
      margin-left: 0px!important;
    }
    .product-color h4 {
      margin-right: -405px;
    }
  .addcart {
    /* margin-left: -93px; */
    position: relative;
    bottom: 10px;
    left: 183px;
  }
  .viewcart {
    /* margin-left: -158px; */
    /* margin-top: 40px; */
    position: relative;
    right: -183px;
    top: 9px;
  }
  .ul-color li a {
    position: relative;
    left: 200px;
  }
  .cd-product-viewer-wrapper .product-viewer {
    left: 121px;
  }
  .cd-product-viewer-handle {
    left: 100px;
  }
  .oculer_a{
    display: block!important;
    color: #000000;
    text-decoration: none;
   }


}

@media (min-width: 481px) and (max-width: 767px) {
  .linelft, .linergt{
    width: 0px!important;
  }
  .yglass1, .yglass2, .yglass3, .yglass4 {
    margin-left: 116px;
    width: 50%;
  }
  .card {
    position: relative;
    left: -70px;
  } 
  .product-price {
    position: absolute;
    right: 0px;
  }
  .product-img {
    margin-left: 0px;
  }
  .cd-product-viewer-wrapper > div {
    margin-left: -100px;
  }
  .main_ul_clr{
    margin-left: -50px!important;
    margin-top: -100px;
    display: flex;
  }
  .ben_img{
    width: 100%!important;
  }
  .cd-product-viewer-wrapper .product-viewer {
    width: 85%;
    position: relative;
    right: 50px;
  }
  .cd-product-viewer-handle {
    position: relative;
    right: -44px;
    top: -70px;
    width: 60%;
  }
  .clr_text{
    position: relative;
    bottom: 100px;
    width: 100%;
  }
  .ingimg{
    width: 50%!important;
  }
  .content-about{
    text-align: center;
  }
  .title_about {
    margin: -10px 0px 0px 8px;
  }
  .ben-occ{
    margin-bottom: 41px;
  }
  .btn-add{
    position: relative;
    margin-top: -30px;
    box-shadow: 0 0 20px 0px #00000054;
  }
  .btn-buy{
    position: relative;
  }
  .addcart {
    /* margin-left: -93px; */
    position: relative;
    bottom: 10px;
    left: 50px;
}
  .viewcart {
    /* margin-left: -158px; */
    /* margin-top: 40px; */
    position: relative;
    right: -50px;
    top: 9px;
}
  .navbar-toggler {
    color: #18297b!important;
  }
  .at-risk {
    margin: 10px 0px 10px 90px;
    width: 60%;
  }
  .navbar-toggler {
    right: 209px!important;
    color: #343a40!important;
    font-size: 30px!important;
  }
  .occ-resist{
    text-align: center;
  }
  .occ-resist img{
    border: 5px solid #083983;
    border-radius: 50%;
    margin: 10px 0px;
  }
  .cd-product-viewer-wrapper {
    text-align: center;
    padding: 2em 0;
    margin-left: 58px;
  }
  .oculer-cont {
      margin: 30px auto 30px 80px;
  }

  .cd-product-viewer-wrapper img{
    width: 100%;
  }
  .cd-product-viewer-wrapper .product-viewer {
      left: 54px;
      top: -37px;
      height: 178px;
  }
  .cd-product-viewer-handle {
      right: -41px;
      bottom: 20px;
  }
  .ul-color li a {
    margin-left: -5px;
    position: relative;
    left: 40px;
  }
   .occ-texts{
    text-align: justify!important;
   }
   .zulu-resp{
    margin-top: 50px;
   }
   .title_about h6 {
      margin-top: 30px;
  }
  .oculer_a{
    display: block!important;
    color: #000000;
    text-decoration: none;
   }

}

/*Mobile responsive*/
@media (min-width: 320px) and (max-width: 480px) {
  /*.cart11 {
    right: 120px!important;
  }
  .navbar-toggler{
    left: 265px!important;
  }*/
  #myVideo {
      margin-top: 60px;
  }
  /*.mylivechat_inline {
    left: 200px;
  }*/
  .title_about {
    margin: -26px 0px 0px -20px;
  }
  .linelft, .linergt{
    width: 0px!important;
  }
  .yglass1 {
    margin-left: 80px;
    width: 90%;
  }
  .yglass2 {
    margin-left: 80px;
    width: 90%;
  }
  .yglass3 {
    margin-left: 80px;
    width: 90%;
  }
  .yglass4 {
    margin-left: 80px;
    width: 90%;
  }
  .card {
    position: relative;
    left: -70px;
  } 
  .product-price {
    position: absolute;
    right: -21px;
  }
  .product-img {
    margin-left: 0px;
  }
  .cd-product-viewer-wrapper > div {
    margin-left: -100px;
  }
  .main_ul_clr{
    margin-left: -152px!important;
    margin-top: -19px;
    position: relative;
    left: 120px;
  }
  .ben_img{
    width: 100%!important;
  }
  .cd-product-viewer-wrapper .product-viewer {
    width: 100%;
    position: relative;
    right: 0px;
  }
  .cd-product-viewer-handle {
    position: relative;
    right: 50px;
    bottom: 50px;
    width: 50%;
  }
  .clr_text{
    position: relative;
    bottom: 46px;
    width: 100%;
  }
  .ingimg {
    width: 75%!important;
    margin-left: 20px;
  }
  .ben-occ{
    margin-bottom: 41px;
  }
  .btn-add{
    position: relative;
    left: 100px;
    margin-top: -90px;
    box-shadow: 0 0 20px 0px #00000054;
  }
  .btn-buy{
    position: relative;
    left: 100px;
    margin-top: -21px;
  }
  .addcart {
    /* margin-left: -100px; */
    position: relative;
    bottom: -30px;
    right: 33px;
  } 
  .viewcart {
    /* margin-left: -205px; */
    /* margin-top: 40px; */
    position: relative;
    bottom: -30px;
    right: 32px;
  }
  .ul-color li{
    margin-top: -20px;
  }
  .navbar-toggler {
    color: #18297b!important;
  }
  .at-risk {
    margin: 10px 0px;
  }
  .navbar-toggler {
    right: 209px!important;
    color: #343a40!important;
    font-size: 30px!important;
  }
  .oculer-cont {
    width: 275px;
    margin: 0px auto 0px 26px;
  }
  .occ-resist{
    text-align: center;
  }
  .occ-resist img{
    border: 5px solid #083983;
    border-radius: 50%;
    margin: 10px 0px;
  }
  .product-price{
    margin-top: -25px;
  }
  #mainMenu .navbar-nav li .nav-link {
    color: #18297b!important;
  }

  .cd-product-viewer-wrapper img{
    width: 100%;
  }
  .cd-product-viewer-wrapper .product-viewer {
      left: 54px;
      top: -37px;
      height: 158px;
  }
  .cd-product-viewer-handle {
      right: -41px;
  }
   .occ-texts{
    text-align: justify!important;
   }
   .zulu-resp{
    margin-top: 50px;
   }
   .title_about h6 {
      margin-top: 30px;
  }
  .oculer_a{
    display: block!important;
    color: #000000;
    text-decoration: none;
   }

}
 
/*Mobile responsive*/
@media (min-width: 412px) and (max-width: 767px) {
  .linelft, .linergt{
    width: 0px!important;
  }

  .cd-product-viewer-wrapper img{
    width: 100%;
  }
  .cd-product-viewer-wrapper .product-viewer {
      left: 54px;
      top: -37px;
      height: 178px;
  }
  .cd-product-viewer-handle {
      right: -41px;
      bottom: 20px;
  }
   .occ-texts{
    text-align: justify!important;
   }
   .zulu-resp{
    margin-top: 50px;
   }
   .title_about h6 {
      margin-top: 30px;
  }
  .main_ul_clr {
    margin-left: -92px!important;
    margin-top: -19px;
    position: relative;
    left: 94px;
  }
  .oculer_a{
    display: block!important;
    color: #000000;
    text-decoration: none;
   }
  
}

