@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

html{
  font-size: 16px;
}
body{
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  background-color: #272727;
}
.overflow{
  border: solid 10px #3b81f9;
  overflow: scroll;
  height: 100vh;
}
h1, h2, h3, h4, h5, h6, button, a, p{
  color: #fff;
  text-decoration: none;
  margin-bottom: 0;
  opacity: 1;
}
h1, h2, h3, h4, h5, h6, button{
  margin-bottom: 0;
}
li{
  list-style: none;
}
button:focus, input:focus, textarea:focus {
  outline: none;
}
a{
  text-decoration: none;
}
a:hover{
  text-decoration: none;
  color: #000000;
}
ul{
  margin: 0;
  padding: 0;
}
/* header */
.header{
  margin-top: 10px;
}
.logo{
  display: inline-block;
  background: transparent url(../img/logo-black.png) no-repeat 50% 50%;
  background-size: contain;
  width: 42px;
  height: 56px;
}
.header .menu-wrapper .menu-btn{
  display: inline-block;
  background: transparent url(../img/menu.svg) no-repeat 50% 50%;
  width: 20.5px;
  height: 18.3px;
}
.form-control{
  background-color: #3a3a3a;
  color: #fff;
}
.form-control::placeholder{
  color: #828282;
}
.form-control:focus{
  background-color: #3a3a3a;
  color: #fff;
}
.form-control:disabled, .form-control[readonly]{
  background-color: #3a3a3a;
  color: #fff;
}
/* login-content */
.login-content{
  margin-top: 15vh;
}
.login-content .logo{
  width: 150px;
  height: 150px;
  background: transparent url(../img/logo-black.png) no-repeat 50% 50%;
  background-size: contain;
}
.login-content .form-control{
  border-radius: 10px;
  background-color: #3a3a3a;
  border: none;
  height: 51px;
  font-size: 17px;
  font-weight: normal;
  color: #fff;
}
.login-content .btn{
  border-radius: 10px;
  background-color: #3b81f9;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  padding: 10px 30px;
}
/* footer-login  and footer contacts*/
.footer{
  left: 0;
  bottom: 39px;
  padding-left: 41px;
  padding-right: 41px;
}
.footer .mail-wrapper .mail-btn{
  display: inline-block;
  background: #3b81f9 url(../img/email.svg) no-repeat 50% 50%;
  border-radius: 100%;
  width: 59px;
  height: 59px;
}
.footer .call-wrapper .call-btn{
  display: inline-block;
  background: #3b81f9 url(../img/call.svg) no-repeat 50% 50%;
  border-radius: 100%;
  width: 59px;
  height: 59px;
}

/* main-content */
.main-content{
  margin-bottom: 17.5px;
}
.main-content .info{
  padding: 20px 25px;
  border-radius: 10px;
  background-color: #3a3a3a;
}
.main-content .info p{
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 1rem;
  line-height: 1.19;
  margin-bottom: 15px;
}
.main-content .info p:last-child{
  margin-bottom: 0;
}
.main-content .services{
  background: transparent url(../img/fig1-2.png) no-repeat 50% 50%;
  height: 105.3px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  background-size: 110%;
}
.main-content .services a{
  height: 100%;
  display: flex;
  width: 54%;
  position: absolute;
  text-align: center;
  font-size: 24px;
  font-weight: normal;
  color: #ffffff;
  justify-content: center;
  align-items: center;
  
}
.main-content .services a:first-child{
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  -webkit-clip-path: polygon(
    0 0, /* left top */
    100% 0, /* right top */ 
    300% -800%, /* right bottom */
    0 400% /* left bottom */
  );
  clip-path: polygon(
    0 0, /* left top */
    100% 0, /* right top */ 
    300% -800%, /* right bottom */
    0 400% /* left bottom */
  );
}
.main-content .services a:last-child{
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  left: 50%;
}
/* sales-content */
.sales-content{

}
.sales-content h1{
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.sales-content .recording{
  border-radius: 10px;
  background-color: #3a3a3a;
  /* padding: 27px 25px; */
  border: 25px solid #3a3a3a;
  margin-bottom: 7px;
  max-height: 150px;
  overflow: hidden;
}
.sales-content .recording h2{
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}
.sales-content .recording p{
  font-size: 16px;
  font-weight: normal;
  color: #fff;
}
.sales-content .recording p a{
  color: #3b81f9;
}
/* meetings-content */
.meetings-content{

}
.meetings-content h1{
  margin-bottom: 22px;
}
.meetings-content .calendar-wrapper{
  border-radius: 10px;
  background-color: #3a3a3a;
  padding: 5px 10px 10px 10px;
  margin-bottom: 15px;
  color: #fff;
}
.meetings-content .calendar-wrapper .vanilla-calendar{
  width: 100%;
  box-shadow: none;
  border: none;
  background-color: #3a3a3a;
}
.meetings-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-btn{
  color: #fff;
}
.meetings-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-header svg {
  fill: #fff;
}
.meetings-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-week span{
  background-color: #3a3a3a;
  border-bottom: 1px solid #666464;
  border-top: 1px solid #666464;
}
.meetings-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-header__label{
  font-size: 24px;
  font-weight: normal;
}
.meetings-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date{
  margin: 4px 0px;
  font-size: 24px;
  background-color: #3a3a3a;
}
.meetings-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date--occupied{
  position: relative;
}
.meetings-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date--occupied .count-meetings{
  position: absolute;
  display: inline-block;
  background-color: #3b81f9;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  text-align: center;
  top: 45px;
}
.meetings-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date--today,
.meetings-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date--selected{
  background-color: #fff;
  color: #000;
}
.meetings-content .meeting-day{
  display: none;
  border-radius: 10px;
  background-color: #3a3a3a;
  padding: 12px 18px 18px 18px;
  margin-bottom: 15px;
}
.meetings-content .meeting-day h2{
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 19px;
  text-align: center;
}
.meetings-content .meeting-day .meeting{
  display: flex;
  color: #fff;
  align-items: center;
  font-size: 16px;
}
.meetings-content .meeting-day .meeting .time{
  flex: 0 0 70px;
  font-weight: normal;
}
.meetings-content .meeting-day .meeting .about-meeting{
  flex: 0 0 calc(100% - 70px);
}
.meetings-content .meeting-day .meeting .about-meeting .name{
  font-weight: bold;
}
.meetings-content .meeting-day .meeting .dates{
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}
/* holiday-content */
.holidays-content{

}
.holidays-content h1{
  margin-bottom: 22px;
}
.holidays-content .calendar-wrapper{
  border-radius: 10px;
  background-color: #3a3a3a;
  padding: 5px 10px 10px 10px;
  margin-bottom: 15px;
}
.holidays-content .calendar-wrapper .vanilla-calendar{
  width: 100%;
  box-shadow: none;
  border: none;
  background-color: #3a3a3a;
}
.holidays-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-btn{
  color: #fff;
}
.holidays-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-header svg {
  fill: #fff;
}
.holidays-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-week span{
  background-color: #3a3a3a;
  border-bottom: 1px solid #666464;
  border-top: 1px solid #666464;
}
.holidays-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-header__label{
  font-size: 24px;
  font-weight: normal;
  color: #fff;
}
.holidays-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date{
  margin: 2px 0px;
  font-size: 20px;
  background-color: #3a3a3a;
  color: #fff;
}
.holidays-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date--selected{
  background-color: #fff;
  color: #000;
}
.holidays-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date--today{
  background-color: #fff;
  color: #000;
}
.holidays-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date--new-holiday-date{
  background-color: #3b81f9;
  color: #fff;
}
.holidays-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date--occupied{
  position: relative;
  border-radius: 10px;
  background-color: #818181;
  color: #fff;
  border-radius: 0;
}
.holidays-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date--interval-start{
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.holidays-content .calendar-wrapper .vanilla-calendar .vanilla-calendar-date--interval-end{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}


.holidays-content .holiday-wrapper{
  display: none;
  border-radius: 10px;
  background-color: #3a3a3a;
  padding: 28px 18px;
  margin-bottom: 15px;
  text-align: center;
}
.holidays-content .holiday-wrapper h2{
  font-size: 24px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 9px;
  text-align: center;
}
.holidays-content .holiday-wrapper h2.holiday-interval{
  font-weight: bold;
  margin-bottom: 24px;
}
.holidays-content .holiday-wrapper .confirm-holiday{
  border-radius: 10px;
  background-color: #3b81f9;
  font-size: 18px;
  font-weight: normal;
  color: #ffffff;
  padding: 11px 20px;
}
/* check-id-content */
.checkid-content{
  margin-top: 15vh;
}
.checkid-content h1{
  font-size: 38px;
  font-weight: 500;
  color: #fff;
}
.checkid-content .form-control{
  border-radius: 10px;
  /* background-color: #ffffff; */
  border: none;
  height: 51px;
  font-size: 17px;
  font-weight: normal;
  color: #fff;
}
.checkid-content .btn{
  border-radius: 10px;
  background-color: #3b81f9;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  padding: 10px 30px;
}
.checkid-content .selects{
  position: relative;
  z-index: 1;
}
.checkid-content input.select-input{
  cursor: pointer;
}
.checkid-content .select{
  border-radius: 10px;
  margin-top: 5px;
  display: none;
  position: absolute;
  width: calc(100% - 10px);
  background-color: #3a3a3a;
}
.checkid-content .select a{
  padding: 3px 0px 3px 10px;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  letter-spacing: 2px;
  font-size: 16px;
}
.checkid-content .select a:hover{
  background-color: #3b81f9;
}
.checkid-content .select a.selected{
  background-color: #3b81f9;
}
.checkid-content .select a.selected:first-child{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.checkid-content .select a.selected:last-child{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.checkid-content .excel-btn{
  font-size: 20px;
  color: #3b81f9;
  font-weight: normal;
}
/* contacts-content */
.contacts-content{

}
.contacts-content .form-control{
  border-radius: 10px;
  /* background-color: #ffffff; */
  border: none;
  height: 35px;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 1px;
}
.contacts-content .search-btn{
  border-radius: 10px;
  background-color: #3b81f9;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  padding: 4.5px 0px;
  width: 100%;
}
.contacts-content .found{
  border-radius: 10px;
  padding: 10px 9px;
  border: solid 3px #3b81f9;
  background-color: #3a3a3a;
  margin-bottom: 7px;
  /* max-height: 150px; */
  /* overflow: hidden; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contacts-content .found .left-dates{
  flex: 0 0 50%;
}
.contacts-content .found .right-dates{
  flex: 0 0 50%;
  text-align: right;
}
.contacts-content .found .name,
.contacts-content .found .number{
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.contacts-content .found .last-name,
.contacts-content .found .location{
  font-size: 12px;
  font-weight: 300;
  color: #b8b8b8;
}
.footer.footer-contacts .plus-wrapper .plus-btn{
  display: inline-block;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.27);
  background: #3b81f9 url(../img/add.svg) no-repeat 50% 50%;
  border-radius: 100%;
  width: 59px;
  height: 59px;
}
.contacts-content .found .found-details{
  flex: 0 0 100%;
  margin-top: 31px;
  display: none;
}
.contacts-content .found.active .found-details{
  display: block;
}
.contacts-content .found .found-details .left{
  flex: 0 0 50%;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.contacts-content .found .found-details .right{
  flex: 0 0 50%;
  text-align: right;
}
.contacts-content .found .found-details .right a{
  font-size: 14px;
  font-weight: normal;
  color: #3b81f9;
}
.contacts-content .selects{
  flex: 0 0 33.33333%;
  width: 33.33333%;
  padding-left: 3px;
  position: relative;
  margin-bottom: 5px;
}
.contacts-content .example{
  display: none;
}
.contacts-content input.select-input{
  cursor: pointer;
  height: 18px;
  border-radius: 5px;
  border: solid 1px #3a3a3a;
  background-color: #4e4e4e;
  font-size: 8px;
  font-weight: normal;
  color: #fff;
  padding-left: 5px;
  padding-right: 5px;
  background-image: none;
  box-shadow: none;
  outline: none!important;
}
.contacts-content input.select-input::placeholder{
  color: #fff;
}
.contacts-content .select{
  border-radius: 5px;
  border: solid 1px #3a3a3a;
  margin-top: 5px;
  display: none;
  position: absolute;
  width: 100%;
  z-index: 2;
  background-color: #4e4e4e;
}
.contacts-content .select a{
  padding: 3px 0px 3px 10px;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: #fff;
  font-size: 8px;
  font-weight: normal;
}
.contacts-content .select a:hover{
  background-color: #3b81f9;
}
.contacts-content .select a.selected{
  background-color: #3b81f9;
}
.contacts-content .select a.selected:first-child{
  
}
.contacts-content .select a.selected:last-child{
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.contacts-content .plus-select{
  align-items: center;
  display: flex;
  padding-left: 3px;
  height: 18px;
}
.contacts-content .plus-select .plus-btn{
  display: inline-block;
  background: transparent url(../img/plus.svg) no-repeat 50% 50%;
  border-radius: 100%;
  width: 9px;
  height: 9px;
}

.contacts-content .found .found-details .add-relative__wrapper{
  border-bottom: 1px solid #666464;
  border-top: 1px solid #666464;
}
.contacts-content .found .found-details .add-relative__btn-show{
  border-radius: 5px;
  background-color: #3b81f9;
  font-size: 14px;
  font-weight: normal;
  color: #ffffff;
  padding: 4.5px 17px;
  /* width: 100%; */
}
.contacts-content .found .found-details .add-relative__dropdown{
  display: none;
  width: 104%;
  position: absolute;
  top: -0.1rem;
  left: -0.3rem;
  background-color: #3a3a3a;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.36);
  padding: 10px 7px;
  z-index: 100;
  flex-wrap: wrap;
}
.contacts-content .found .found-details .add-relative__dropdown:before {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  z-index: -1;
}
.contacts-content .found .found-details .add-relative__dropdown .btn{
  border-radius: 5px;
  background-color: #3b81f9;
  font-size: 12px;
  font-weight: normal;
  color: #ffffff;
  padding: 4.5px 17px;
}
.contacts-content textarea.form-control{
  outline: none;
  border: none;
  box-shadow: none;
  resize:none;
  min-height: 30px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: normal;
  color: #fff;
  border-radius: 0;
}
.contacts-content textarea.form-control::placeholder{
  color: #fff;
}

.contacts-content .form-control::-moz-placeholder {
  color: #fff; /* Цвет подсказывающего текста */
 }
.contacts-content .form-control::-webkit-input-placeholder { color: #fff; }
.contacts-content .form-control:-ms-input-placeholder { color: #fff; }
.contacts-content .form-control::-ms-input-placeholder { color: #fff; }
.contacts-content .form-control::placeholder { color: #fff; } 
.contacts-content .add-contact__dropdown{
  /* display: none; */
  width: 89%;
  position: fixed;
  bottom: -150%;
  left: 5.3%;
  padding: 17px;
  z-index: 100;
  flex-wrap: wrap;
  border-radius: 20px;
  border: solid 3px #3b81f9;
  background-color: #3a3a3a;
  transition: 1s;
}
.contacts-content .add-contact__dropdown.active{
  bottom: 5%;
  transition: 1s;
}
.contacts-content .add-contact__dropdown:before {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  z-index: -1;
}
.contacts-content .add-contact__dropdown .form-control{
  line-height: 1.17;
  outline: none;
  border: none;
  box-shadow: none;
  resize:none;
  font-size: 12px;
  font-weight: normal;
  height: auto;
  letter-spacing: normal;
  color: #fff;
  border-radius: 0;
  border-bottom: 1px solid #666464;
  padding: 0 0 5px 0;
  margin-top: 16px;
}
.contacts-content .add-contact__dropdown textarea.form-control{
  height: 20px;
}
.contacts-content .add-contact__dropdown input.select-input {
  cursor: pointer;
  height: 18px;
  border-radius: 5px;
  border: solid 1px #343434;
  font-size: 8px;
  font-weight: normal;
  color: #fff;
  padding: 15px 5px 15px 5px;
  background-image: none;
  box-shadow: none;
  outline: none!important;
  margin-top: 0;
}
.contacts-content .add-contact__dropdown .plus-select {
  align-items: center;
  display: flex;
  padding-left: 3px;
  height: 33px;
}
.contacts-content .add-contact__dropdown .add-contact__add-btn{
  margin-top: 20px;
  padding: 2px 29px;
  border-radius: 5px;
  background-color: #3b81f9;
  font-size: 14px;
  font-weight: normal;
  color: #ffffff;
}

.footer-contacts{
  width: auto;
  left: calc(100% - 74px);
  padding-left: 0;
  padding-right: 0;
}

/* har-bituah-content */
.har-bituah-content .top-block{
  margin-top: 200px;
  transition: 1s;
}
.har-bituah-content.show-middle .top-block{
  margin-top: 150px;
  transition: 1s;
}
.har-bituah-content.show-contacts .top-block{
  margin-top: 30px;
  transition: 1s;
}
.har-bituah-content .top-block .btn{
  width: 49%;
  border-radius: 10px;
  background-color: #3b81f9;
  font-size: 17px;
}
.har-bituah-content .top-block .btn.har-bituah__btn-type-id{
  margin-left: 2%;
}
.har-bituah-content .top-block .har-bituah__type-id{
  display: none;
}
.har-bituah-content .top-block .form-control{
  border-radius: 10px;
  background-color: #3a3a3a;
  border: none;
  height: 51px;
  font-size: 17px;
  font-weight: normal;
  color: #fff;
  margin-top: 10px;
}
.har-bituah-content .top-block .har-bituah__type-id .btn{
  margin-left: 0;
  margin-top: 10px;
  width: 33%;
}
.har-bituah-content .middle-block{
  margin-top: 16px;
  background-color: #3a3a3a;
  border-radius: 10px;
  padding: 25px 23px 25px 23px;
  display: none;
}
.har-bituah-content .middle-block .form-check-inline{
  margin-right: 0;
}
.har-bituah-content .middle-block  .form-check-inline .form-check-input{
  height: 18px;
  width: 18px;
}
.har-bituah-content .middle-block .form-check-label{
  color: #fff;
  font-size: 15px;
}

.har-bituah-content .middle-block .type-manually{
  margin-top: 20px;
}
.har-bituah-content .middle-block .type-manually{
  display: none;
}
.har-bituah-content .middle-block .type-manually .btn{
  width: 48%;
  margin-top: 14px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: normal;
  border-radius: 10px;
}
.har-bituah-content .contacts-block{
  margin-top: 14px;
  margin-bottom: 40px;
  display: none;
}
.har-bituah-content .contacts-block .contacts-wrapper{
  display: none;
}
.har-bituah-content .contacts-block .contact{
  border-radius: 10px;
  padding: 14px 12px;
  border: solid 3px #3b81f9;
  background-color: #3a3a3a;
  margin-bottom: 7px;
  /* max-height: 150px; */
  /* overflow: hidden; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.har-bituah-content .contacts-block .contact .left-dates {
  flex: 0 0 50%;
}
.har-bituah-content .contacts-block .contact .name, 
.har-bituah-content .contacts-block .contact .number {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.har-bituah-content .contacts-block .contact .last-name, 
.har-bituah-content .contacts-block .contact .location {
  font-size: 12px;
  font-weight: 300;
  color: #b8b8b8;
}
.har-bituah-content .contacts-block .contact .right-dates {
  flex: 0 0 50%;
  text-align: right;
}
.har-bituah-content .contacts-block .contact .bottom-btns{
  margin-top: 11px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.har-bituah-content .contacts-block .contact .bottom-btns .btn{
  width: 35%;
  font-weight: normal;
  border-radius: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.har-bituah-content .contacts-block .contact .bottom-btns .btn:last-child{
  margin-left: 10px;
}
.har-bituah-content .contacts-block .contact-options{
  /* margin-top: 22px; */
}
.har-bituah-content .contacts-block .har-bituah__message-sent{
  color: #fff;
  display: none;
}
.har-bituah-content .contacts-block .contact-options .btn{
  border-radius: 10px;
  font-size: 17px;
  padding: 13px 29px;
}
.har-bituah-content .contacts-block .contact-options .btn.har-bituah__btn-file-dropdown{
  padding: 13px 29px;
  width: 100%;
  display: none;
}
.har-bituah-content .contacts-block .contact-options .har-bituah__connection-to-user{
  display: none;
}
.har-bituah-content .contacts-block .contact-options .har-bituah__connection-to-user .btn{
  margin-top: 11px;
  font-size: 16px;
  padding: 5px 36px;
}
.har-bituah-content .contacts-block .contact-options .har-bituah__connection-to-user .btn:last-child{
  margin-left: 10px;
}

.har-bituah-content .har-bituah__dropdown-connect-to {
  /* display: none; */
  width: 89%;
  position: fixed;
  bottom: -150%;
  left: 5.3%;
  padding: 17px;
  z-index: 100;
  flex-wrap: wrap;
  border-radius: 20px;
  border: solid 3px #3b81f9;
  background-color: #3a3a3a;
  transition: 1s;
}
.har-bituah-content .har-bituah__dropdown-connect-to.active {
  bottom: 18%;
  transition: 1s;
}
.har-bituah-content .har-bituah__dropdown-connect-to:before {
  content: '';
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  bottom: 10px;
  z-index: -1;
}
.har-bituah-content .har-bituah__dropdown-connect-to .btn{
  width: 100%;
  border-radius: 10px;
  font-size: 17px;
  padding: 13px 29px;
  margin-bottom: 12px;
}
.har-bituah-content .har-bituah__dropdown-connect-to .contact{
  border-radius: 10px;
  background-color: #3b81f9;
  margin-bottom: 0;
  cursor: pointer;
}
.har-bituah-content .har-bituah__dropdown-connect-to .contact .last-name,
.har-bituah-content .har-bituah__dropdown-connect-to .contact .location{
  color: #fff;
}
/* ----------------------------Animations */
/* bottomToTop */
.bottomToTop{
  opacity:0;
  transform: translateY(100%);
  -webkit-animation: bottomToTop 1s ease 0.5s both;
  animation: bottomToTop 1s ease 0.5s both;
}
.bottomToTopLong{
  opacity:0;
  transform: translateY(100%);
  -webkit-animation: bottomToTop 1s ease 1.5s both;
  animation: bottomToTop 1s ease 1.5s both;
}
@keyframes bottomToTop{
  0%   {transform: translateY(100%);opacity:0;}
  /* 25%  {transform: translateY(50%);opacity:0.25;} */
  /* 50%  {transform: translateY(25%);opacity:0.75;} */
  100% {transform: translateY(0%);opacity:1;}
}

/* topToBottom */
.topToBottom{
  opacity:0;
  transform: translateY(-100%);
  -webkit-animation: topToBottom 1s ease 0.5s both;
  animation: topToBottom 1s ease 0.5s both;
}
@keyframes topToBottom{
  0%   {transform: translateY(-100%);opacity:0;}
  /* 25%  {transform: translateY(-50%);opacity:0.25;} */
  /* 50%  {transform: translateY(-25%);opacity:0.75;} */
  100% {transform: translateY(0%);opacity:1;}
}
/* rightToLeft */
.rightToLeft{
  opacity:0;
  transform: translateX(100%);
  -webkit-animation: rightToLeft 1s ease 1.5s both;
  animation: rightToLeft 1s ease 1.5s both;
}
@keyframes rightToLeft{
  0%   {transform: translateX(100%);opacity:0;}
  /* 25%  {transform: translateX(50%);opacity:0.25;} */
  /* 50%  {transform: translateX(25%);opacity:0.75;} */
  100% {transform: translateX(0%);opacity:1;}
}
