.international-calling-form {
	margin-top: 80px;
}

.international-calling-form label {
  display: block;
	font-size: 13px;
  font-weight: 700;
}

.international-calling-form .form-item {
	float: left;
  width: 46%;
}

.international-calling-form .phone-field {
	float: right;
}

.international-calling-form .actions {
	text-align: center;
}

.international-calling-form .hs-button {
	margin: 40px auto 50px auto;
}

.international-calling-form .country-field {
	position: relative;
}

#intCountry {
  -webkit-appearance: none;
  -moz-appearance: none;
}

#intCountry::-ms-expand {
  display: none;
}

.international-calling-form .country-field span {
  cursor: pointer;
  display: none;
  font-size: 15px;
  line-height: 48px;
  position: absolute;
  right: 15px;
  top: 28px;
}

.international-calling-form .country-field.active span {
  display: block;
}

.country-field-overlay {
  position: relative;
  top: 79px;
  left: 0;
  width: 100%;
  max-width: 100%;
  margin: auto;
  background: #fff;
  display: none;
}

.country-field-overlay.active {
	display: block;
}

.country-field-overlay ul {
  border: 1px solid #b0b0b0;
	padding: 20px 0;
  position: relative;
  top: -79px;
  column-count: 3;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  -ms-column-count: 3;
  -o-column-count: 3;
  z-index: 3;
  width: 100%;
}

.country-field-overlay ul li {
    list-style: none;
    font-size: 14px;
    padding: 2px 20px;
    cursor: pointer;
}

.country-field-overlay ul li:hover {
		background: #3c73ce;
    color: #fff;
}

.international-calling-result {
	display: none;
  margin-bottom: 80px;
  text-align: center;
}

.international-calling-result.active {
	display: block;
}

.international-calling-result hr {
  margin: 0 0 20px 0;
}

.international-calling-result .error {
  font-size: 14px;
	text-align: center;
}

.international-calling-result table {
    display: inline-block;
    width: 724px; 
    max-width: 100%;
    margin: auto;
}
.international-calling-result table tr {
}
.international-calling-result table th {
    font-size: 24px;
    font-weight: bold;
    color: #3c73ce;
    padding: 18px 8px;
    border-bottom:  1px solid #ecedef;
}
.international-calling-result table td {
    font-size: 24px;
    color: #3c73ce;
    text-align: left;
    padding: 18px 8px;
    border-bottom:  1px solid #ecedef;
    font-weight: 300;
}
.international-calling-result table th:first-child,
.international-calling-result table td:first-child {
  	text-align: left;
    width: 80%;
}
.international-calling-result table th:nth-child(2),
.international-calling-result table td:nth-child(2) {
    width: 20%;
}

/*** loading spinner from old site ***/
.bv-spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.bv-spinner > div {
  background-color: #f78d1e;
  height: 100%;
  width: 6px;
  display: inline-block;
  margin-left: 1px;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.bv-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.bv-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.bv-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.bv-spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}


@media (max-width: 1100px) {
  .international-calling-form .form-item {
    float: left;
    width: 100%;
  }
  
  .country-field-overlay {
    display: none !important;
  }
  
  .international-calling-result table th,
  .international-calling-result table td {
    font-size: 14px;
    padding: 10px 8px;
  }
  .international-calling-result table th:first-child,
  .international-calling-result table td:first-child {
    width: 80%;
  }
  .international-calling-result table th:nth-child(2),
  .international-calling-result table td:nth-child(2) {
    width: 20%;
  }
}