/*!
 * Template Name : simple-ver-14
 */

/**********************/
/* Simple Version 14
/* Main Carousel Style
/**********************/

/* 1 - Background color of carousel */
.simple-ver-14.sz-slider {
  background: rgba(211,235,239,.4);
}
/* 2 - Background Images Position */
.simple-ver-14.sz-slider[data-type=slider]:not([data-background=image]) > .carousel-inner > .carousel-item {
  background-position: center;
}

/*******************/
/* Simple Version 14
/* Layer Settings
/*******************/

/* 1 - Text - wrapper */
.simple-ver-14-layer {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 440px;
  height: 220px;
  display: block;
  line-height: 1;
  min-width: 440px;
  max-width: 440px;
  min-height: 220px;
  max-height: 220px;
  position: absolute;
  text-align: center;
}
/* 2 - Container */
.simple-ver-14-layer > div {
  margin: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  display: block;
  position: relative;
}
/* 3 - Children */
.simple-ver-14-layer > div > span {
  margin: auto;
  color: #252525;
  display: block;
  text-transform: capitalize;
}
/* 4 - 1st Child ( tasty ) */
.simple-ver-14-layer > div span:nth-child(1) {
  font-size: 160px;
  padding: 0 30px 0 0;
  font-family: 'Damion', cursive;
}
/* 5 - 2nd Child ( online food ordering available ) */
.simple-ver-14-layer > div span:nth-child(2) {
  font-size: 28px;
  margin-top: 30px;
  font-family: 'Rubik', sans-serif;
}

/******************/
/* Responsiveness */
/******************/

/*----- When the screen size gets = 576px and < 768px -----*/
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Text - wrapper */
  .simple-ver-14-layer {
    width: 400px;
    height: 180px;
    min-width: 400px;
    max-width: 400px;
    min-height: 180px;
    max-height: 180px;
  }
  /* 1st Child ( tasty ) */
  .simple-ver-14-layer > div span:nth-child(1) {
    font-size: 120px;
    padding: 0 20px 0 0;
  }
  /* 2nd Child ( online food ordering available ) */
  .simple-ver-14-layer > div span:nth-child(2) {
    font-size: 22px;
  }
}

/*----- When the screen size gets = 273px and < 576px -----*/
@media (min-width: 273px) and (max-width: 575.98px) {
  /* Text - wrapper */
  .simple-ver-14-layer {
    width: 200px;
    height: 140px;
    min-width: 200px;
    max-width: 200px;
    min-height: 140px;
    max-height: 140px;
  }
  /* 1st Child ( tasty ) */
  .simple-ver-14-layer > div span:nth-child(1) {
    padding: 0;
    font-size: 80px;
  }
  /* 2nd Child ( online food ordering available ) */
  .simple-ver-14-layer > div span:nth-child(2) {
    font-size: 18px;
    margin-top: 10px;
  }
}

/*----- When the screen size gets <= 272px -----*/
@media (max-width: 272.98px) {
  /* Text - wrapper */
  .simple-ver-14-layer {
    width: 180px;
    height: 110px;
    min-width: 180px;
    max-width: 180px;
    min-height: 110px;
    max-height: 110px;
  }
  /* 1st Child ( tasty ) */
  .simple-ver-14-layer > div span:nth-child(1) {
    padding: 0;
    font-size: 60px;
  }
  /* 2nd Child ( online food ordering available ) */
  .simple-ver-14-layer > div span:nth-child(2) {
    font-size: 14px;
    margin-top: 10px;
  }
}

/**************************/
/* Simple Version 14
/* Left And Right Buttons
/**************************/

/* 1 - Buttons */
.simple-ver-14-btn.sz-slider .carousel-control-btn {
  opacity: 1;
  width: 60px;
  height: 60px;
  display: block;
  color: #252525;
  font-size: 16px;
  background: #fff;
  line-height: 60px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
  -webkit-transition: color .2s ease, background .2s ease;
  -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,.5);
  box-shadow: 0 0 8px 0 rgba(0,0,0,.5);
}
/* 2 - Prev - Button */
.simple-ver-14-btn.sz-slider .carousel-control-btn.carousel-control-prev {
  margin: auto auto auto 25px;
}
/* 3 - Next - Button */
.simple-ver-14-btn.sz-slider .carousel-control-btn.carousel-control-next {
  margin: auto 25px auto auto;
}
/* 4 - Buttons - hover */
.simple-ver-14-btn.sz-slider .carousel-control-btn:hover {
  color: #fff;
  background: #252525;
}

/******************/
/* Responsiveness */
/******************/

/*----- When the screen size gets = 273px and < 576px -----*/
@media (min-width: 273px) and (max-width: 575.98px) {
  /* Buttons */
  .simple-ver-14-btn.sz-slider .carousel-control-btn {
    display: none;
  }
}

/*----- When the screen size gets <= 272px -----*/
@media (max-width: 272.98px) {
  /* Buttons */
  .simple-ver-14-btn.sz-slider .carousel-control-btn {
    display: none;
  }
}