/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : May 6, 2021, 5:16:29 PM
    Author     : quocanh
*/

.container_icon_fix{
    position: fixed;
	z-index: 99999;
    left: 0;
    bottom: 0;
    background-color: white;
    width: 100%;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-column-gap: 2px;
    justify-content: center;
    align-items: center;
}
.item_icon{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    padding: 4px;
    background-color: red;
    cursor: pointer;
}

.icon_fix{
    font-size: 26px;
        padding: 1px;
}
.icon_text_span{
    font-size: 11px;
}
.modal_yeu_cau_goi_lai{
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    display: flex;
    justify-content: center;
    align-items: center;
}
.container_modal_yeu_cau_goi_lai{
    position: relative;
    background-color: #fefefe;
    margin: auto auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 100%; /* Could be more or less, depending on screen size */
}
.modal_tieu_de{
    background-color: #2d2d2d;
    text-align: center;
    padding: 10px;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
}
.icon_zalo_fix{
        width: 27px;
    height: 27px;
}
/*.icon_mess_fix{
    width: 30px;
    height: 30px;
}*/
.input_icon_fix{
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    width: 90%;
    height: 50px;
    padding-left: 12px;
}
.btn_icon_fix{
    background-color: #2d2d2d;
    width: 90%;
    text-align: center;
    color: white;
    border: none;
    padding: 11px;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 18px;
    
}
.div_btn_icon_fix{
    display: flex;
    justify-content: center;
    align-items: center;
}
a.item_icon:link, a.item_icon:visited{
    color: white;
}

a.item_icon:hover, a.item_icon:active{
    color: white;
    text-decoration: none;
}

.close_span_icon_fix{
  position: absolute;
    right: 6px;
    top: -8px;
    font-size: 39px;
    font-weight: bold;
    color: white;
}

.overlay{
    position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.2);
  z-index: 99999999;
}
.overlay_text{
    position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}
.overlay_loader {
    position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top: 8px solid #332ff8;
  border-bottom: 8px solid #332ff8;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

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

@media only screen and (min-width: 768px) {
    
    .container_icon_fix{
        display: none;
    }
    
}

@media only screen and (max-width: 576px){
    .input_icon_fix{
        width: 100%;
        
    }
    .btn_icon_fix{
        width: 100%;
    }
}
