
.main_button_div {
    width: 400px;
    min-width: 200px;
    max-width: 400px;
    height: 200px;
    min-height: 200px;

    padding: 30px;
    text-align: center;
    
    color: #fff;
    background:#f81228;
    border-radius: 0px;
    transition: 0.3s;
        margin: 15px;
}

.href_buttons {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 22px;

}

.main_button_div:hover {
    background: #000;
    color: #fff;
    transition: 0.3s;
        
    
}

.main_div {
        display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.base_btn {
        background: lightblue;
    padding: 10px;
    border-radius: 0px;
    border: 2px solid #333;
    color: black;
}
#form_content form label {
    color: #fff;
}
.entry-title {
    display: none;
}
#result_table_div {
        margin-top: 50px;
}

table { 
    
    border: 4px double black; /* Рамка вокруг таблицы */
    border-collapse: collapse; /* Отображать только одинарные линии */
   }
th { 

    border: 1px solid black; /* Граница вокруг ячеек */
  }
td { 
   padding: 5px;
    border: 1px solid black; /* Граница вокруг ячеек */
   }
   
   /* нечетная строка таблицы класса stripy */
tr:nth-child(2n+1){
   background: lavender;
}

/* четная строка таблицы класса stripy */
tr:nth-child(2n){
   background: white;
}
tr th {
    background: #beccd8;
    padding: 15px;
}
#form_content form {
    margin: auto;
    border: 2px solid #000;
    padding: 15px;
    border-radius: 0px;
    margin-top: 20px !important;
        column-count: 2;
    text-align: center;
}
#result_table {
    color: #000;
}
label {
    font-weight: bold;
}
 /* The Modal (background) */
.map-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 15; /* 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.8); /* Black w/ opacity */

}

/* Modal Content/Box */
.map-modal-content {
  background-color: #fefefe;
  margin: 5% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #1a2b44;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 
#sms_len_span_text {
font-size: 18px;
    color: darkcyan;
    font-weight: 900;
}

.blocked_btn{
    background: #e1e0e0 !important;
    color: #c8c1c1 !important;
    border-color: #c8c1c1 !important;
}

#result_count {
        text-align: center;
    font-size: 23px;
        color: beige;
}




.site-branding {
    margin-bottom: 30px;

}

.page-header {
        background: #000 !important;
    border: unset !important;
}

.site-content {
    background: #2d2d2d;
}



/*preloader*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  /* фоновый цвет */
  background: rgb(0 0 0 / 68%);
  z-index: 1001;
}

.preloader__image {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  /*opacity: 0;*/
}

.loaded .preloader {
  display: none;
}
/*preloader*/

.btn_row {
    display: flex;
    justify-content: space-around;
}