/* START:Added By-Suhasini Mishra Date-16/1/21 Desc-For Left Slide Special Message section */

/* Button used to open the contact form - fixed at the bottom of the page */


/* The popup form - hidden by default */
/* form popup class is the clss of main div of left slide popup*/
.form-popup {
  display: none;
  position: fixed;
  bottom: 81px;
  left:0;
  border: 3px solid #f1f1f1;
  z-index: 12;
  width:400px;
  height:auto;
  max-height: 400px;
  animation: translateAnimation ease 3s; 
  animation-iteration-count: 1; 
  animation-fill-mode: forwards; 
  background-image: linear-gradient(315deg, #000000 0%, #414141 74%); 

}

/* message title for left slide popup*/

.left-popup-msg-title
{
  color: white;
  font-family: 'Bad Script', cursive;
  position: relative;
  left: 16px;
  font-size: 22px;
 
  display: flex;
  justify-content: left;
  align-items: center;
}
.popup-title
{
  display: flex;
  justify-content: space-between;

}
/* read more link for left slide popup*/
.read-more
{
  line-height:1;
  letter-spacing:0.06em;
  font-family: 'Lato', sans-serif;
  font-weight:normal;
  font-size:16px;
  text-decoration:none;
  color:#fff;
  background:red;
  display:inline-block;
  padding:15px 12px 15px 15px;
  transition:background 200ms;
  border-radius:10px;
  position: relative;
  right: 0px;
  height: 10px;
}
/* Feature Image Class for left slide popup*/
.special-img
{
  height: auto;
  width: 400px;
   max-height: 370px;
}

.special-img img
{
  height: auto;
  width:100%;
  max-width: 100%;
  max-height: 360px;
  position: relative;  
}

/* Timer Class for left slide popup*/
#timer, #timerInBetween, #timerInLeft, #timerInTop {
    font-size: 3em;
    font-weight: 100;
    color: white;
    text-shadow: 0 0 20px #48C8FF;
    z-index: 11;
    height: 100px;
    margin-left: 20px;
}

#timerInTop{
  font-size: 2em;
}

#timer div, #timerInBetween div, #timerInLeft div, #timerInTop div {
    display: inline-block;
    min-width: 90px;
}

#timer div span, #timerInBetween div span, #timerInLeft div span, #timerInTop div span {
    color: #B1CDF1;
    display: block;
    font-size: .35em;
    font-weight: 400;
}

/*Special Message Icon Class for left slide popup*/
.icon-img img
{
    height: auto;
    width: auto;
    position: absolute;
    top: -88px;
    margin-left: 30%;
    max-width: 100px;
    max-height: 100px;
}

/* Feature Text Class for left slide popup*/
.featured-text
{
 
  width: 90%;
  margin-top: 20px;
  padding: 10px;
  color: white;
  text-align: justify;
  /*font-family: 'Lobster', cursive;*/
  display: flex;
  justify-content: center;
  align-items: center;

}
.featured-text div
{

}

/* The Close Button class for left slide popup*/
.close {
    position: absolute;
    top: -48px;
    color: #aaaaaa;
    right: -15px;
    font-size: 58px;
    font-weight: bold;
}

.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}


/* Class For Popup That Comes After Closing the left slide popup*/
#message-div
{
    position: fixed;
    bottom: 120px;
    width: auto;
    height: 40px;
    font-size: 20px;
    left: 25px;
    display: none;
    color: white;
    padding-right: 10px;
    padding-left: 10px;
    cursor: pointer;
    animation: animateMsg ease-in-out 3s; 
    animation-iteration-count: 1; 
    animation-fill-mode: forwards; 
   z-index:12;
}
/* Special Message Icon Class for popup After Closing the left slide popup*/
.msg-icon 
{
    height: auto;
    width: auto;
    position: absolute;
    top: -48px;
    
}

.msg-icon img
{
 
    max-width: 150px;
    max-height: 100px;
  
}
/* Special Message title Class for popup After Closing the left slide popup*/

.msg-title 
{
  height: auto;
  width: auto;
  padding: 15px;
  background: #222;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-top-right-radius: 75px;
}

/* Special Message Timer Class for popup After Closing the left slide popup*/

#sec-timer
{
  display: flex;
  line-height: 1;
  font-size: 20px;
}

.span-timer
{
  display: flex;
  font-size: 20px;
  color: white;
  line-height: 1;
}

#days {
  font-size: 38px;
  color: #db4844;
  padding-right: 5px;
  padding-left: 5px;
}
#hours {
  font-size: 38px;
  color: #f07c22;
  padding-right: 5px;
  padding-left: 5px;
}
#minutes {
  font-size: 38px;
  color: #f6da74;
  padding-right: 5px;
  padding-left: 5px;
}
#seconds {
  font-size: 24px;
  color: #abcd58;
  padding-right: 5px;
  padding-left: 5px;
}

/*START: added on - 21/3/21 by Suhasini Mishra for special message button*/
.SpecialBtn
{
  background-color: green;
    padding: 30px;
    color: white;
    width: 20px;
    font-size: 13px;
    border-radius: 50%;
    position: fixed;
    bottom: 97px;
    left: 0px;
    margin: auto;
    text-decoration: none;
    display: none;
    cursor: pointer;
    z-index: 12;
}

.SpecialBtn span
{
  display: flex;
  justify-content: center;
  align-items: center;
}
/*START: added on - 21/3/21 by Suhasini Mishra for special message button*/


/* Special Message Animation Class for  left slide popup*/

@keyframes translateAnimation
{
  0%
  {
    transform: translateX(-100%);
  }
  100%
  {
    transform: translateX(0%);
  }
}

@keyframes animateMsg
{
  0%
  {
    transform: translateY(-130%);
  }
  100%
  {
    transform: translateY(-270%);
  }
}

@keyframes animatetopMsg
{
  0%
  {
    top: 0px;
    transform: translateY(-110%);
  }
  100%
  {
    top: 0px;
    transform: translateY(0%);
  }
}

/* END:Added By-Suhasini Mishra Date-16/1/21 Desc-For Left Slide Special Message section */


/* START:Added By-Suhasini Mishra Date-16/1/21 Desc-For Big Modal Special Message section */

.sm-bpopup-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  overflow-y: scroll;
}
.sm-bpopup-overlay:target {
  visibility: visible;
  opacity: 1;
}

.main-content{
  margin-block-end: 1em;
}
.sm-bigpopup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 800px;
  position: relative;
  transition: all 5s ease-in-out;

}
.outer1{
  height: 330px;
}

.bigpopupcontent{
  display: flex;
}

.bpopup-smIcon{
  position: relative;
}

.sm-iconImg{
  width: 100px;
  height: 100px;
}

.bigpopup-msgTitle{
  z-index: 1;
}

.bpopup-divWA{
  flex-grow: 100;
}
.bpopupsm-share-whApp a{
  border: 1px solid #51B14D;
  background-color: #51B14D;
  width: 150px;
  padding: 8px;
  font-size: 12px;
  text-decoration: none;
  color: white;
  position: absolute;
  right: 0;
  margin-right: 45px;
  text-align: center;
}

.bpopupsm-close a{
  position: absolute;
  top: 0;
  right: 0;
  color: #aaaaaa;
  font-size: 58px;
  font-weight: bold;
  text-decoration: none;
}

.sub-content{
  display: flex;
  padding: 20px;
}

.outer1-content{
  text-align: justify;
  margin-top: 20px;
}
.content-desc{
  line-height: 1.77777777777rem;
  font-family: Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
  font-size: 1.09rem;
  font-weight: 300;
  color: #5f5151;
  max-height: 400px;
  height: auto;
  overflow-y: scroll;
  width:100%;
}

.sub-content img
{
  height: auto;
  width: 50%;
  max-height: 400px;
  padding-right: 20px;
  margin-block-start: 1.5em;
}

.bigsm-ftext{
  width: 330px;
  padding-right: 40px;
  color: #686767;
  font-family: 'Lobster', cursive;
}

.bigsm-breakLine{
  display: none;
  width: 0;
}
/* END:Added By-Suhasini Mishra Date-16/1/21 Desc-For Big Modal Special Message section */


/* START:Added By-Suhasini Mishra Date-16/1/21 Desc-For Top Popup Special Message section */

/* form-top-popup class is the class of main div of Top Popup */
.form-top-popup {
  display: none;
  position: fixed;
  bottom: 0px;
  z-index: 12;
  width:450px;
  height:65px;
  max-height: 400px;
  margin-left: auto;
  margin-right: auto;
  animation: animatetopMsg ease 3s; 
  animation-iteration-count: 1; 
  animation-fill-mode: forwards; 
  background-image: url(../images/special-background.png); 
  color:black;

}


/* form-top-popup img class is the class for feature Image of Top Popup */
.form-top-popup img
{
  height: 65px;
  width: 450px;
  cursor: pointer;
}

/* top-popup-title class is the class for Message Title of Top Popup */
.top-popup-title
{
  position: absolute;
  top: 64px;
  width: auto;
  height: 35px;
  max-width: 450px;
  display: flex;
  justify-content: flex-start;
  background-color: #393b44;
  color: white;
  padding: 3px;
}


.top-popup-msg-title
{
  font-family: 'Bad Script', cursive;
  position: relative;
  display: flex;
  justify-content: flex-start;
  font-size: 20px;
}

/* close-top-popup class is the class for Close Top Popup */
.close-top-popup {
    position: absolute;
    top: -9px;
    color: #aaaaaa;
    right: 0px;
    font-size: 28px;
    font-weight: bold;
}

.close-top-popup:hover,
.close-top-popup:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

/*tPopupfeatured-text   Class  is the Class for Feature Text Font size in  Big Modal popup*/
.tPopupfeatured-text{
  position: absolute;
  left:10px;
  color: white;

}
/* END:Added By-Suhasini Mishra Date-16/1/21 Desc-For Top Popup Special Message section */


/* START:Added By-Suhasini Mishra Date-16/1/21 Desc-For Between Special Message section */

/* special-card class is the clss of main div of Between Special Message popup*/
.special-card {
  
  z-index: 12;
    width: 450px;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    
    background-size: 100% 100%;
    background-attachment: fixed;
    position: relative;
    margin-top: 130px;
    left: -40px;


}

/* special-card h3 class is the clss of message title of Between Special Message popup*/


.special-card-msg-title
{
  color: black;
  font-family: 'Bad Script', cursive;
  position: relative;
  font-size: 24px;
  height: 6px;
  display: flex;
  justify-content: left;
  align-items: center;
}
.special-popup-title
{
  display: flex;
  justify-content: space-between;

}

/* special-featured-text class is the clss for Feature Text of Between Special Message popup*/
.special-featured-text
{
 
  width: 90%;
  position: relative;
  top: -20px;
  color: black;
  text-align: justify;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 21px;
}




/* special-read-more class is the clss for Read More of Between Special Message popup*/

.special-read-more
{
  line-height:1;
  letter-spacing:0.06em;
  font-family: 'Lato', sans-serif;
  font-weight:normal;
  font-size:16px;
  
  color:#fff;
  background:red;
  display:inline-block;
  padding:15px 12px 15px 15px;
  transition:background 200ms;
  border-radius:10px;
  position: relative;
  right: 10px;
 
  
}

.special-read-more:hover
{
  text-decoration: none;
   color:#fff;
}

/* special-card-img class is the clss for Feature Image of Between Special Message popup*/

.special-card-img
{
  
  width: 450px;
  
}

.special-card-img img
{
  height: auto;
  width:450px;
  max-width: 100%;
  position: relative;  
}

/*special-icon-img  class is the class for Special Message Icon of Between Special Message popup*/

.special-icon-img 
{
  height: auto;
  width:auto;
  position: absolute; 
  bottom: 0px;
  right: 0px; 
}

.special-icon-img img
{
 
    max-width: 150px;
    max-height: 100px;
  
}

::-webkit-scrollbar {
    width: 12px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}

/*Media Query for All Popup*/
@media only screen and (max-width: 870px){
 .sm-bigpopup{
    width:80%;
  }
}
@media only screen and (max-width: 700px){

  /*START --- Media query for Big Modal*/

    .sm-bigpopup
    {
        width: 99%;
        padding: 0;
    }
     
    .bigpopupcontent
    {
      display: block;
      text-align: center;
    }

    .outer1-content{
      padding-block: 20px;
      width:100%;
    }
    .sub-content
    {
      display: block;
    }

    .sub-content img {
       width: 100%;
    }

    .bpopupsm-share-whApp a{
      position: relative;
      margin: auto;
      text-align: center;
    }

    .bigsm-ftext {
      margin: auto;
      width:100%;
      padding-right: 0;
    }

    .content-desc p {
      margin-block-start: 2em;
    }



    .bigsm-breakLine{
      margin-top:30px; 
      display: block;
      width: 90%;
      align-content: center;
    }


    /*END --- Media query for Big Modal*/


    /* Left Slide Popup*/
    .featured-text 
    {
       width: 100%;
       padding: 0px;
    }


    .left-popup-msg-title
    {
      font-size: 14px;
    }
        
}
@media only screen and (max-width: 500px) {

    #message-div
    {
      visibility: hidden;
    }
  #timer {
      
      height: auto;
      
  }
}
@media only screen and (max-width: 450px) {
  /*Left Slide Poppup*/
      .form-popup 
      {
      
      width:90%;
      height: auto;
      background-color: #000000;
      background-image: linear-gradient(315deg, #000000 0%, #414141 74%); 
      }
    .left-popup-msg-title
    {
      
      font-size:15px;
      font-weight: 600;  
    }

    /* Popup that open when close left slide popup*/
    #message-div
    {
        z-index: 11;  
    }
    .message-div-msg-title
    {
        color: black;
    }
     /*Left Slide Poppup*/
    .special-img {
      
      width:100%;
      height: auto; 
    }
    .special-img img
    {
      width:100%; 
    }
    .form-top-popup
    {
      width: 100%;
    }
    .form-top-popup img
    {
      width: 100%;
    }

    /* Special Between Card*/
    .special-card
    {
      width: 100%;
      left:0px;
    }
    .special-featured-text 
    {
    width: 100%;
    padding: 0px;
   
    }

    .special-featured-text div
    {
     
     margin-top: 20px; 
    }
    .special-card-img 
      {
        
        width:100%;
        
      }
    .special-card-img img
      {
        
        width:100%;
        
      }
      .popup .close {
        top: -6px;
        right: 0px;
      }

      #timer, #timerInBetween, #timerInLeft, #timerInTop 
      {
        font-size: 2em;
        margin-left: 0px;
    }

   #timerInTop div
    {
    
    min-width: 70px;
    }
}
