.giftcard_title {
    font-family: 'Montreal-Heavy';
}

#giftcard_scene_container {
    position: relative;
    z-index: 0;
    margin-bottom: 30px;
}

#giftcard_scene {
    width: 512px;
    height: 331px;
    perspective: 1024px;
    margin: auto;
    transform-origin: left top;
}

#giftcard_card {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1s;
    transform-style: preserve-3d;
}

#giftcard_card img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#giftcard_card .card_text {
    position: absolute;
    z-index: 10000000;
    color: black;
}

#giftcard_card.flipped {
    transform: rotateY(180deg);
}

#card_name {
    left: 10px;
    top: 170px;
    font-family: 'Dimbo';
    font-size: 38px;
    overflow: hidden;
    width: calc(100% - 20px);
    text-align: left;
    height: 38px;
    line-height: 38px;
}

#card_description {
    top: 210px;
    left: 10px;
    font-family: 'SourceSansPro';
    width: calc(100% - 20px);
    text-align: left;
    font-size: 25px;
    height: 50px;
    overflow: hidden;
    line-height: 25px;
}

#card_code {
    top: 110px;
    right: 10px;
    font-family: 'SourceSansPro';
    text-align: left;
    width: 160px;
    font-size: 22px;
    line-height: 30px;
}

#card_code_title {
    font-family: 'Montreal-Heavy';
}

#card_validity {
    bottom: 30px;
    left: 10px;
    font-size: 20px;
    font-family: 'Montreal-Heavy';
}

#card_center {
    bottom: 5px;
    left: 10px;
    font-size: 20px;
    font-family: 'Montreal-Heavy';
}

.card__face {
    position: absolute;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    border-radius: 10px;
}

.card__face--front {
    transform: rotateY(180deg);
}


#giftcard_amount_table {
    margin: auto;
}

#giftcard_amount_table td {
    padding: 10px;
    font-size: 30px;
    text-align: right;
}

#giftcard_amount_table .giftcard_minus, #giftcard_amount_table .giftcard_plus {
    font-size: 40px;
    cursor: pointer;
}

#giftcard_amount_table .giftcard_minus:hover i, #giftcard_amount_table .giftcard_plus:hover i {
    color: #EA581A;
}

#giftcard_amount_table .giftcard_minus, #giftcard_amount_table .giftcard_plus, #giftcard_amount_table .giftcard_amount {
    padding-left: 0;
    padding-right: 0;
    width: 0;
}

#giftcard_amount_table .giftcard_minus {
    padding-right: 20px;
}

#giftcard_amount_table .giftcard_plus {
    padding-left: 20px;
}

#giftcard_amount_table .giftcard_amount input {
    background: none;
    color: white;
    font-size: 40px;
    width: 100px;
    border: none;
    text-align: center;
    box-shadow: 0px 0px 0px 4px #555;
    border-radius: 10px;
}

#giftcard_amount_table .giftcard_amount input:focus {
    box-shadow: 0px 0px 0px 4px #EA581A;
}

.giftcard_container {
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
}

.giftcard_step {
    display: inline-block;
    background: white;
    border-radius: 100px;
    color: #333;
    text-align: center;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
}

#giftcard_format_chooser {
    padding: 0;
    width: 80%;
    margin-left: 10%;
    margin-top: 30px;
    margin-bottom: 20px;
    font-family: 'Grobold';
    border-radius: 10px;
    overflow: hidden;
    background: #444;
    display: flex;
}

#giftcard_format_chooser .giftcard_format {
    margin: 0;
    padding: 15px;
    width: 50%;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#giftcard_format_chooser .giftcard_format:hover, #giftcard_format_chooser .giftcard_format.active {
    background: #EA581A;
}

#giftcard_message_field {
    width: 80%;
}

#giftcard_delivery_cost, #giftcard_info {
    font-family: 'SourceSansPro';
    font-size: 25px;
}

#show_amount_chooser {
    display: inline-block;
    font-family: 'SourceSansPro';
    font-size: 25px;
    width: 100%;
    margin-top: 10px;
}

#giftcard_message_container {
    margin-bottom: 50px;
}

#giftcard_info .one_free_every {
    color: yellow;
    font-weight: bold;
}


#giftcard_warning_hint {
    font-size: 24px;
    font-family: SourceSansPro !important;
    text-align: center !important;
    color: rgb(248, 193, 21);
    width: 86%;
    margin: auto;
    text-align: left;
    margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
    .giftcard_title, #show_amount_chooser, #giftcard_delivery_cost, .giftcard_format, #giftcard_info {
        font-size: 16px !important;
    }

    #giftcard_message_field, #giftcard_value_field {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .giftcard_step {
        width: 30px !important;
        height: 30px !important;
        line-height: 30px !important;
        font-size: 20px !important;
    }

    #giftcard_format_chooser {
        width: 100% !important;
        margin-left: 0 !important;
    }

    #giftcard_warning_hint {
        font-size: 16px !important;
        text-align: justify !important;
        width: 100% !important;
    }
}
