body {
  background: #ededed;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  width: 100%;
}
iframe{
  width: 100%;
}
.image{
  width: 300px;
  margin-bottom: 10px;
}
.input{
  padding:5px;
  margin-bottom: 10px;
}
.image img{
  width: 40%;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: block;
}
.d-none{
  display: none;
}
.center {
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 10%;
  transform: translate(-50%, 0);
}
@media (max-width: 992px){
  .center {
    top: 20%;
    transform: translate(-50%, 0);
  }
}
.price{
  text-align: center;
  font-size: 40px;
  color: #373435;
}
.price small{
  font-size: 50%;
}
.btn{
  cursor: pointer;
  width: 100%;
  display: block;
  color: #fff;
  background: #f34e79;
  border: none;
  margin-top: 20px;
  padding: 10px;
  font-size: 18px;
}
/** Custom Select **/
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
}
.custom-select-wrapper select {
  display: none;
}
.custom-select {
  position: relative;
  display: inline-block;
  width: 300px;
}
.custom-select-trigger {
  position: relative;
  display: block;
  width: 202px;
  padding: 0 84px 0 22px;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 60px;
  background: #373435;
  border-radius: 4px;
  cursor: pointer;
}
.custom-select-trigger:after {
  position: absolute;
  display: block;
  content: '';
  width: 10px; height: 10px;
  top: 50%; right: 25px;
  margin-top: -3px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  transition: all .4s ease-in-out;
  transform-origin: 50% 0;
}
.custom-select.opened .custom-select-trigger:after {
  margin-top: 3px;
  transform: rotate(-135deg) translateY(-50%);
}
.custom-options {
  position: absolute;
  display: block;
  top: 100%; left: 0; right: 0;
  min-width: 100%;
  margin: 15px 0;
  border: 1px solid #b5b5b5;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 0 2px 1px rgba(0,0,0,.07);
  background: #fff;
  transition: all .4s ease-in-out;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}
.custom-select.opened .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.custom-options:before {
  position: absolute;
  display: block;
  content: '';
  bottom: 100%; right: 25px;
  width: 7px; height: 7px;
  margin-bottom: -4px;
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
  background: #fff;
  transform: rotate(45deg);
  transition: all .4s ease-in-out;
}
.option-hover:before {
  background: #f9f9f9;
}
.custom-option {
  position: relative;
  display: block;
  padding: 0 22px;
  border-bottom: 1px solid #b5b5b5;
  font-size: 14px;
  font-weight: 600;
  color: #373435;
  line-height: 47px;
  cursor: pointer;
  transition: all .4s ease-in-out;
}
.custom-option:first-of-type {
  border-radius: 4px 4px 0 0;
}
.custom-option:last-of-type {
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
}
.custom-option:hover,
.custom-option.selection {
  background: #f9f9f9;
}
input{
  width: 300px;
  display: block;
}
li.banderas{
  width: 30px;
  height: 30px;
  display: inline-block;
  cursor: pointer;
}
li.banderas img{
  width: 100%;
}
.flags_wrapper{
  width: 100%;
  text-align: center;
}
.body-white{
  background: white !important;
}
ul{
  padding: 5px;
}