
.shadow1 {
  -webkit-box-shadow: 0px 9px 48px -14px rgba(133, 133, 133, 0.4);
  -moz-box-shadow: 0px 9px 48px -14px rgba(133, 133, 133, 0.4);
  box-shadow: 0px 9px 48px -14px rgba(133, 133, 133, 0.4);
}

.shadow2 {
  -webkit-box-shadow: 0px 3px 5px 2px rgba(199,199,199,0.5);
  -moz-box-shadow: 0px 3px 5px 2px rgba(199,199,199,0.5);
  box-shadow: 0px 3px 5px 2px rgba(199,199,199,0.5);
}

.close {
  width: 50px;
  height: 50px;
  border: 2px solid black;
  box-sizing: border-box;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.close::after, .close::before {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  transform: rotate(45deg);
  background: black;
  margin: calc(50% - 1px) 0% 0% 20%; /*  calc(50% - 1/2*height) 0% 0% calc((100%-width)/2)  */
}

.close::before {
  transform: rotate(-45deg);
  position: absolute;
}

.calc_cont {
  font-family: 'PFHighwaySansPro-Light';
  width: calc(100% - 5px);
  max-width: 1200px;
  margin: 100px auto 150px auto;
  font-size: 0px;
  border: 2px solid #232f84;
  position: relative;
  padding: 50px 30px;
  border-radius: 20px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  margin-left: calc((100% - 1200px) / 2);
}

.calc_title {
  letter-spacing: -2px;
  font-family: 'PFHighwaySansPro-Medium';
  font-size: 45px;
  color: #f05b78;
  text-align: center;
  /* position: absolute; */
  padding: 20px;
  background: white;
  /* top: -50px; */
  line-height: 0.9;
  margin-bottom: 25px;
  margin-top: -95px;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.serv_cont {
  overflow: hidden;
}

.serv_cont .item {
  padding: 30px 0px;
  border-radius: 10px;
  font-size: 16px;
  width: 20%;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
}

.serv_cont .item.active {
  background: #ececec;
}

.serv_cont .item:hover {
  background: #ececec;
}

.serv_name {
  font-size: 25px;
  color: #232f84;
  text-align: center;
  font-family: 'PFHighwaySansPro-Bold';
  margin-top: 10px;
  letter-spacing: -1px;
}

.serv_info {
  /*width: 100%;
  text-align: center;
  font-size: 20px;
  color: #a7a9ac;
  padding: 14px 0px;
  border: 1px solid #a7a9ac;
  border-radius: 3px;
  background: white;
  width: 140px;
  margin: 0px auto;
  line-height: 1;
  margin-top: 30px;
  */

  font-family: 'PFHighwaySansPro-Regular';
  text-align: center;
  font-size: 20px;
  margin: 0px auto;
}

.serv_info_wrapper.active {
  background: #ececec;
  color: #232f84;
  border-color: #ececec;
}

.serv_info_wrapper {
  line-height: 1;
  margin: 30px auto 0px auto;
  width: 155px;
  text-align: center;
  height: 60px;
  border: 1px solid #a7a9ac;
  border-radius: 3px;
  background: white;
  display: flex;
  align-items: center;
  color: #a7a9ac;
}


.serv_packs {
  background: white;
  border-radius: 10px;
  padding: 30px;
  border: 1px solid #a7a9ac;
  font-size: 0px;
}


.serv_pack_block {
  font-size: 22px;
  display: inline-block;
  vertical-align: top;
  border-bottom: 1px solid #a7a9ac;
  padding: 5px;
}

.serv_packs_cont {
  position: relative;
  border-radius: 10px;
  border: 1px solid #e3e3e3;
  padding: 30px;
  display: none;
  margin-top: 10px;
  margin-bottom: 15px;
  z-index: 2;
}

.mob_pack:nth-of-type(3) {

}

.serv_pack table {
  width: 100%;
  border-collapse: collapse;
}

.serv_pack table tr:first-child td:last-child .serv_select {
  display: none;
}

.serv_pack table tr:first-child td {
  font-size: 16px;
  font-family: 'PFHighwaySansPro-Medium';
  color: grey;
  line-height: 0.9;
}

.serv_pack table tr td:first-child {
  text-align: left;
}

.serv_pack table tr td {
  font-size: 22px;
  border-bottom: 1px solid #a7a9ac;
  padding: 5px;
  text-align: center;
}

.serv_pack table tr td:last-child {
  width: 125px;
  text-align: right;
}

.serv_pack table tr:not(:first-child):hover {
  background: #ececec;
  cursor: pointer;
}

.serv_pack table tr:not(:first-child):hover .serv_select{
  background: #2aaa9e;
  color: white;
  border-color: #2aaa9e;
}

.serv_select.active {
  background: #f05b78;
  color: white;
  border-color: #f05b78;
}

.serv_select {
  padding: 5px 23px;
  display: inline-block;
  background: white;
  border: 1px solid #cacaca;
  border-radius: 999px;
  text-transform: uppercase;
}

.serv_packs_cont .close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #a7a9ac;
  border-width: 0px;
  border-radius: 10px;
}

.serv_packs_cont .close::after, .serv_packs_cont .close::before {
  height: 1px;
  background: white;
}

.serv_pack {
  display: none;
}

.calc_prices {
  width: 100%;
  font-size: 0px;
  position: absolute;
  bottom: -36px;
  text-align: center;
  left: 0px;
}

.pric1 {
  color: #939598;
}

.calc_item {
  letter-spacing: -2px;
  margin: 0px 20px;
  background: white;
  display: inline-block;
  vertical-align: top;
  padding: 0px 20px;
  font-family: 'PFHighwaySansPro-Medium';
  line-height: 0.9;
  font-size: 29px;
}


.price1, .price2, .price3 {
  display: none;
}


.price1 {
  color: #c2c2c2;
}

.price2 {
  color: #232f84;
}

.price3 {
  color: #f05b78;
}

.calc_price {
  font-size: 2em;
  font-family: 'PFHighwaySansPro-Bold';
}

.calc_price_luna {
  font-size: 1em;
  font-family: 'PFHighwaySansPro-Regular';
}

.calc_price_type {
  font-size: 1em;
}

.new_table {
  width: calc(50% - 14px);
  margin: 10px 7px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  border-radius: 15px;
  border: 1px solid #cfcfcf;

}


.new_table .row {
  font-size: 17px;
  border-bottom: 1px solid #cfcfcf;
  padding: 8px 0px;
  text-align: center;
  color: #333333;
  line-height: 1;

}

.new_table .row:first-child, .new_table .row:last-child {
  padding: 15px 5px;
  font-size: 22px;
}

.new_table .row:last-child {
  font-size: 17px;
}

.new_table .row:first-child {
  font-family: 'PFHighwaySansPro-Medium';
}

.new_table .row:last-child {
  border-width: 0px;
}

.mob_pack {
  display: none;
}

.submit_calc {
 /*padding: 15px 30px;
 background: #232f84;
 */
 color: white;

 border-radius: 99px;
 font-size: 20px;
 display: table;
 margin: 0px auto;
 margin-top: 50px;
 cursor: pointer;
 position: absolute;
 left: calc(50% - 67px);
 bottom: -100px;
}

.serv_calc_popup {
  overflow: auto;
  position: fixed;
  top: 0px;
  height: 100vh;
  width: 100% !important;
  background: white;
  z-index: 9999;
  left: auto !important;

}

.serv_calc_popup::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0px;
  height: 100%;
  font-size: 0px;
}


.calc_cont > .close {
  width: 30px;
  height: 30px;
  right: 0px;
  top: -60px;
  left: auto;
  position: absolute;
}

.cerere_container .calc_info .text table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  font-family: 'PFHighwaySansPro-Thin';
}

.cerere_container .calc_info .text table tr td {
  border-bottom: 1px solid #cacaca;

  padding: 5px 0px;
}

.cerere_container .calc_info .text table tr td:first-child {
  text-align: left;
  width: 40%;
}

.cerere_container .calc_info .text table tr td:last-child {
  text-align: right;
  width: 60%;
}

.tv_ad {
  border-radius: 10px;
  margin-top: 20px;
  padding: 10px 20px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  cursor: pointer;
  font-size: 22px;
  border: 2px solid white;
}

.tv_ad:hover,
.tv_ad.active {
  border: 2px solid #28a79a;
}

.tv_ad img,
.tv_ad .title,
.tv_ad .price {
  display: inline-block;
  vertical-align: middle;
}

.tv_ad img {
  margin-right: 15px;
}

.tv_ad .title {
  font-family: 'PFHighwaySansPro-Medium';
  color: #232f84;
  margin-right: 20px;
}

@media (max-width: 1000px) {

  .item_new_line {
    display: block;
  }

  .serv_cont {
    text-align: center;
  }

  .serv_cont .item {
    width: 215px;

  }

}

@media (max-width: 768px) {

  .wide_pack {
    display: none !important;
  }

  .mob_pack {

  }

  .calc_item {
    font-size: 22px;
    padding: 0px 10px;
    margin: 0px 10px;
  }

  .calc_title {
    width: 80%;
    font-size: 35px;
    box-sizing: border-box;
    margin-bottom: 0px;
  }

  .serv_cont .item {
    width: 150px;
    padding: 20px 0px;
  }

  .serv_name {
    height: 20px;
    line-height: 1;
    font-size: 20px;
  }

  .serv_info_wrapper {
    width: calc(100% - 20px);
    height: 35px;
    margin: 10px auto 0px auto;
  }

  .calc_cont {
    padding: 50px 0px;
  }

  .serv_icon {
    width: 100px;
    height: auto;
  }

  .serv_packs_cont {
    box-sizing: border-box;
    padding: 40px 15px;
    top: 0px;
    position: absolute;
    background: white;
    width: calc(100% - 2px);
    margin-top: 45px;
    left: 0px;
    border-radius: 20px;
  }

  .serv_info {
    font-size: 14px;
  }

}

@media (max-width: 480px) {

  .item_new_line {
    display: none;
  }

  .calc_item {
    font-size: 20px;
    padding: 0px 5px;
    margin: 0px 5px;
  }

  .calc_title {
    font-size: 30px;
    width: 90%;
  }

}

@media (max-width: 320px) {
  .calc_item {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .calc_prices {


  }
}
