.mrkv_buy-one-click__open-call.button, .mrkv_buy-one-click__create_order{
  font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2em;
    cursor: pointer;
    margin-bottom: 20px;
}
.mrkv_buy-one-click__open-call.button:hover, .mrkv_buy-one-click__create_order:hover{
  box-shadow: inset 0 0 0 100px rgba(0,0,0,.2);
  transition: all .3s;
}
.mrkv_buy-one-click__open-call.button{
  width: fit-content;
    max-width: fit-content;
    margin-bottom: 0 !important;
}
.mrkv_buy-one-click__form__inner {
  position: fixed; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border-radius: 8px;
  z-index: 10001;
  display: none;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.mrkv_buy-one-click__overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
  display: none; 
}
.mrkv_buy-one-click__close_form{
  text-align: right;
  cursor: pointer;
}
.mrkv_buy-one-click__form__inner label{
  text-align: left;
}
.mrkv_buy-one-click__form__inner__result{
  display: none;
}
.mrkv_buy-one-click__product__img img{
  width: 40px;
  max-width: 40px;
}
.mrkv_buy-one-click__product__info{
  text-align: left;
}
.mrkv_buy-one-click__product__info h5{
    margin-bottom: 0;
    line-height: 1;
    font-size: 16px;
}
.mrkv_buy-one-click__loader{
  display: none;
  position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
    left: 50%;
    top: 50%;
    background: #f2f2f2;
    border: 10px solid #f2f2f27d;
    transform: translate(-50%, -50%) !important;
}
.mrkv_buy-one-click__loader:before{
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  animation: prixClipFix 2s linear infinite ;
  border: 2px solid #000;
}
.mrkv_buy-one-click__form__line .iti{
  width: 100%;
  margin-bottom: 20px;
}
@keyframes rotate {
  100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}