
/* =================== Model Popup =================== */

.modalDialog {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
}
.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}
.modalDialog > div {
     width:80%;  
    position: relative;
    margin: 6% auto 0 auto;
    padding: 50px 0px;
    border-radius: 10px;
    background: #fff;
        text-align: center;
    /*background: #339999;
    background: #82b440;
    background: #69b572eb;*/
}
.close {
  background: #606061;
  color: #FFFFFF;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -moz-box-shadow: 1px 1px 3px #000;
  -webkit-box-shadow: 1px 1px 3px #000;
  box-shadow: 1px 1px 3px #000;
}
.close:hover {
  background: #00d9ff;
}
.modalDialog.model-popup-box {
    background: #000000a3;
}
.modalDialog.model-popup-box div form .billing-details h3
{
      color: white
}

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #000000;
    text-transform: capitalize;
    background-color: #f4f723;
    border: 2px solid #eaed12;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    border-radius: 50px;
    font-weight: 400;
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.city-list-area  {  
  transition: ease all 0.5s;
}
.city-list-area ul   {
    transition: ease all 0.5s;
}
.city-list-area ul li {
    width: 16%;
    display: inline-flex;
    text-align: center;  
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;transition: ease all 0.5s;
    position: relative;
}
.city-list-area ul li a {
    text-align: center;
    padding: 20px;
    /*background: whitesmoke;*/
    /* margin-bottom: 20px; */
    width: 100%;
    border: 1px solid #e9c7ff;
    border-radius: 2px;
    transition: ease all 0.5s;    z-index: 1;
    /*background: linear-gradient(45deg, #8256bd, #c574b4);transition: ease all 0.5s;*/
}

.city-list-area ul li a:hover {
    /*background: #d463f7;*/
    color: white;
    /*background: linear-gradient(45deg, #8256bd, #c574b4);transition: ease all 0.5s;*/
}

.city-list-area h3 {
    margin-bottom: 30px; 
    color: #6e0697;
}

a.close.close-bottom
{
    padding: 10px 20px;
        color: white;
    border: 0px solid grey;
    background: #7707a3;
    line-height: 0;
    position: relative;
    right: 0px;
    text-align: center;
    top: 15px;
    width: auto;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: ease all 0.5s;
}
a.close.close-bottom:hover
{
  background: #d34b8f;
}


.city-list-area ul li a::before, .city-list-area ul li a::after  {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index:  -1;
}
.city-list-area ul li a::after {
    width: 0;
    left: 0;
    right: auto;
    /*background: #000000;*/
    background: linear-gradient(45deg, #c574b4, #8256bd); 
}
.city-list-area ul li a:hover::after {
    width: 100%;
    left: 0;
    right: auto;
    /*background: #000000;*/
    background: linear-gradient(45deg, #c574b4, #8256bd); 
}



@media only screen and (min-width: 320px) and (max-width: 767px) 
{
      .city-list-area ul li {
          width: 39%;
          display: inline-flex;
          text-align: center;
          margin-bottom: 7px;
          margin-left: 2px;
          margin-right: 2px;
          transition: ease all 0.5s;
          position: relative;
      }
      .city-list-area ul li a { 
          padding: 5px 2px; 
      }
      .modalDialog > div {
        width: 80%;
        position: relative;
        margin: 20px 0px  0px 0px;
        padding: 20px 0px 40px 0px;
        border-radius: 10px;
        background: #fff;
        text-align: center;
    }
}

/* =================== Model Popup Close =================== */