﻿.builder-form {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    width: 850px;
    background: rgb(8,138,201);
    background: -moz-linear-gradient(90deg, rgba(8,138,201,1) 45%, rgba(36,159,219,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(8,138,201,1) 45%, rgba(36,159,219,1) 100%);
    background: linear-gradient(90deg, rgba(8,138,201,1) 45%, rgba(36,159,219,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#088ac9",endColorstr="#249fdb",GradientType=1);
    border: 1px solid #fff;
}

.tabs {
    display: none;
}

.active-tabs {
    display: block;
}

#item_price_fb {
    font-weight: bold;
    font-size: 1.4rem;
    font-family: Consolas;
    color: yellow;
    text-shadow: 1px 1px #000;
}

#measurements_choice_txt {
    font-weight: bold;
    font-size: 1.3rem;
    font-family: Consolas;
    margin-bottom: 0;
    color: yellow;
    text-shadow: 1px 1px #000;
}

.payment-proccessing {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(8,138,201);
    background: -moz-linear-gradient(90deg, rgba(8,138,201,1) 45%, rgba(36,159,219,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(8,138,201,1) 45%, rgba(36,159,219,1) 100%);
    background: linear-gradient(90deg, rgba(8,138,201,1) 45%, rgba(36,159,219,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#088ac9",endColorstr="#249fdb",GradientType=1);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    text-align: center;
    flex-wrap: wrap;
    color: #fff;
    text-shadow: 1px 1px #000;
}

.builder-border-radius {
    border-radius: 5px;
}

.major_cards_logo {
    width: 70%;
    margin-bottom: 20px;
}

.builder-border-top-radius {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.builder-border-bot-radius {
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.builder-flex-row{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.builder-flex-col {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}


.builder-flex-row-color {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.builder-swatches{
    width: 30px;
    margin: 0px 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
    .builder-swatches:hover {
        box-shadow: 0px 0px 5px 2px #ff0000;
    }

.builder-swatches-selected {
    box-shadow: 0px 0px 5px 2px #ff0000;
}

.builder-swatches-preview {
    width: 30px;
    margin: 0px 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

    .builder-swatches-preview:hover {
        box-shadow: 0px 0px 5px 2px #ff0000;
    }

.builder-swatches-preview-selected {
    box-shadow: 0px 0px 5px 2px #ff0000;
}

.base-form {
    height: 0;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform-origin: top center;
    -moz-transform-origin: top center;
    -webkit-transform-origin: top center;
    opacity: 0;
    transform: scale(1, 0);
}

.active-form {
    opacity: 1;
    transform: scale(1, 1);
}

.hidde_element{
    display:none;
}

.flip-card {
    background-color: transparent;
    width: 228px;
    height: 284px;
    perspective: 1000px;
    border-radius: 10px;
}

.pointer-event-none{
    pointer-events: none;
}

.flip-card-inner {
    border-radius: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card-animation {
    transform: rotateY(-180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    border-radius: 10px;
    background-color: #bbb;
    color: black;
}

.flip-card-back {
    border-radius: 10px;
    background-color: #fff;
    color: #000;
    transform: rotateY(180deg);
}

.ul-specs li {
    list-style-type: square;
}

@media screen and (max-width: 854px) {
    .builder-form{
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    .text-sizing {
        font-size: 10px;
    }
}

@media screen and (max-width:350px) {


    .text-sizing {
        font-size: 9px;
    }
}