

#flipCard {
    border: 0;
    background: #acb0f7;
    padding: 10px 25px;
    border-radius: 8px;
    color: white;
}
#flipCard i {
    color: white;
}

[name=font_type] {
    display: none;
}


.designer-wrapper {
    display: flex;
    flex-direction: row;
    width: 100% !important;

    margin-bottom: 30px;
}

.card-area {
   /* width: 50% !important;*/
}


.informations {
    display: flex;
    width: 50% !important;

    flex-direction: row;
}

.brand {
    color: white !important;
    font-size: 25px;

    padding: 0px 10px;
    text-overflow: ellipsis;
    word-break: break-word;
}


.flip-card {
    background-color: transparent;
    width: 400px;
    height: 250px;
    perspective: 1000px;
    border-radius: 8px;
}

.buttons {
    justify-content: center; align-items: center; width: 400px; display: flex;
}

@media screen and (max-width: 540px) {
    .flip-card {
        background-color: transparent;
        width: 225px;
        height: 140px;
        perspective: 1000px;
        border-radius: 8px;
    }

    .buttons {
        justify-content: center; align-items: center; width: 225px; display: flex;
        margin-bottom: 30px;
    }

    .brand {
        font-size: 15px;
    }
}

.flip-card-inner {
    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:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card.show-back .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.flip-card-front {
    /*background: linear-gradient(90deg, rgba(18,18,18,1) 0%, rgba(0,0,0,1) 0%, rgba(18,18,18,1) 0%, rgba(46,44,44,1) 52%, rgba(92,89,89,1) 100%);*/
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 11%, rgba(0,0,0,1) 28%, rgba(74,74,74,1) 100%);
    /*background-color: #1E1E2D;*/
    color: black;
}

.flip-card-back {
    /*background: linear-gradient(90deg, rgba(18,18,18,1) 0%, rgba(0,0,0,1) 0%, rgba(18,18,18,1) 0%, rgba(46,44,44,1) 52%, rgba(92,89,89,1) 100%);;*/
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 11%, rgba(0,0,0,1) 28%, rgba(74,74,74,1) 100%);
    /*background-color: #1E1E2D;*/
    color: white;
    transform: rotateY(180deg);
}
