.m_design
{
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.575);
-webkit-box-shadow: 0 0 10px   rgba(0, 0, 0, 0.575);
box-shadow: 0 0 10px   rgba(0, 0, 0, 0.575);
}

.facebook-icon {
  width: 100px;
  display: block;
  height: 20px;
  text-decoration: none;
  padding-left: 15px;
  margin: 5px;
}

.facebook-icon:before {
  content: '';
  background: url('https://drive.google.com/uc?export=view&id=1pgEleudexmvv-2JtMqC2CPtCuzizdiqi');
  background-size: cover;
  position: absolute;
  width: 15px;
  height: 15px;
  margin-left: -20px;
  margin-top: 3px;
}

.ig-icon {
  width: 100px;
  display: block;
  height: 20px;
  text-decoration: none;
  padding-left: 15px;
  margin: 5px;
}

.ig-icon:before {
  content: '';
  background: url('https://drive.google.com/uc?export=view&id=1y09f2dRYecX5POCJGgxvSch7nVYjBcNg');
  background-size: cover;
  position: absolute;
  width: 15px;
  height: 15px;
  margin-left: -20px;
  margin-top: 3px;
}

.email-icon {
  width: 100px;
  display: block;
  height: 20px;
  text-decoration: none;
  padding-left: 15px;
  margin-left: 5px;
  margin-top:5px;
}

.email-icon:before {
  content: '';
  background: url('https://drive.google.com/uc?export=view&id=1_jgMYVMHEpZ1LTw1J7AvrWlV3TOvhho9');
  background-size: cover;
  position: absolute;
  width: 15px;
  height: 15px;
  margin-left: -20px;
  margin-top: 3px;
}

.phone-icon {
  width: 100px;
  display: block;
  height: 20px;
  text-decoration: none;
  padding-left: 15px;
  margin-left: 5px;
  margin-top:5px;
}

.phone-icon:before {
  content: '';
  background: url('https://drive.google.com/uc?export=view&id=1t9jxdAUyZqW8zDNvV3ACpuN-POyoAQkl');
  background-size: cover;
  position: absolute;
  width: 15px;
  height: 15px;
  margin-left: -20px;
  margin-top: 3px;
}
 /* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 5px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade 
{
  from 
      {
        opacity: .4
      }
  to 
      {
      opacity: 1
    }
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 100000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.loader {
  position: absolute;
  left: 50%;
  top: 50vh;
  z-index: 1000000;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #192a48;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

