.alert {
    display: none;
  padding: 20px;
  background-color: #f44336;
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 15px;
}

.alert.success {background-color: #4CAF50;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

textarea {
    width: 100%;
}
       
/*
#call_status {
    display: none;
    padding: 8px;
    width: 100%;
    background-color: #4CAF50;
    color: white;
}
*/

#divAnim {
    display: none;
    position:relative; 
    width:0px; 
    height:0px;
    font:15px Verdana; 
    color: white;
    background-color:#4CAF50; 
    border:solid 1px #CCF; border-radius:20px; 
    -moz-border-radius:2px; -webkit-border-radius:5px;
}

#divAnim div {
    display:block; 
}

.callerNo {
    margin: auto;
    width: 100%;
    text-align: center;
    padding: 9.5px;
}

* {
  box-sizing: border-box;
}

input[type=text], [type=password], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=button] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=button]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

.col-10 {
  float: left;
  width: 10%;
  margin-top: 6px;
}

.col-90 {
  float: left;
  width: 90%;
  margin-top: 6px;
}


.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-gap: 10px;
}

.grid-container > div {
  text-align: center;
  padding: 20px 0;
  font-size: 16px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}