#modalAction {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    background: rgba(0,0,0,0.75);
    z-index: 9000000;
}
#modalAction .modal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#modalAction .modal-dialog {
    max-width: 550px;
    background-color: #ffffff;
    padding: 30px;
    left: 50%;
    top: 10%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    right: auto;
    z-index: 2;
}
#modalAction p {
    font-size: 20px;
    line-height: 24px;
    color: #000000;
}
#modalAction #noVat,
#modalAction #plusVat {
    color: #FFF;
    background-color: #2e9fdf;
}
#modalAction #noVat {
    margin-right: 10px;
}
#modalAction .vatTitle,
#modalAction .vatText {
    text-align: center;
}

#modalAction .vatText {
    font-size: 16px;
    margin-bottom: 30px;
}

#closeModalAction{
    position: absolute;
    right: -15px;
    top: -30px;
    width: 20px;
    height: 20px;
    opacity: 0.3;
    margin: 5px;
}

#closeModalAction:hover {
    opacity: 1;
    cursor: pointer;
}

#closeModalAction:before, #closeModalAction:after {
    position: absolute;
    right: 10px;
    top: 4px;
    content: ' ';
    height: 12px;
    width: 2px;
    background-color: #737373;
}

#closeModalAction:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#closeModalAction:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


.vatButtons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.vatButtons > div {
    cursor: pointer;
}

@media screen and (max-width: 615px) {
    .vatButtons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #modalAction #noVat {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
.vatButtons #noVat,
.vatButtons #plusVat {
    padding: 10px 15px 10px 45px;
    position: relative;
    font-size: 13px;
}
.vatButtons #noVat b,
.vatButtons #plusVat b{
    font-size: 16px;
}

.vatButtons #noVat:before {
    content: '';
    position: absolute;
    display: block;
    width: 15px;
    height: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15px;
    background-image: url("../../img/commerce.svg");
    background-size: cover;
    background-position: 0 center;
    background-repeat: no-repeat;
}
.vatButtons #plusVat:before {
    content: '';
    position: absolute;
    display: block;
    width: 16px;
    height: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15px;
    background-image: url("../../img/private.svg");
    background-size: cover;
    background-position: 0 center;
    background-repeat: no-repeat;
}




/* DETAIL PAGE*/
.productVatCount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.productVatCount > div {
    text-align: right;
    font-weight: bold;
    width: 100%;
    margin-bottom: 10px;
}

.info_text_price {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 10px;
}

.info_text_price > a {
    margin-top: 5px;
    padding-left:10px;
}

.productVatCount .setWithVat-active,
.productVatCount .setWithOutVat-active {
    color: #FFF;
    font-weight: 400;
    background-color: #009fe0 !important;
    /* background-color: #f29100 !important; */
}
#setWithVat:hover,
#setWithOutVat:hover {
    cursor: pointer;
}
