﻿

.section-container {
    display: flex;
    clear: both;
    width: 100%;
}
@media screen and (max-width: 750px) {
    .section-container {
        display: inline;
        clear: both;
        width: 100%;
    }
}

.left-section {
    width: 70%;
    min-width:350px;
    float: left;
}

.right-section {
    width: 30%;
    float: left;
    padding-left: 1rem;
}

.email-detail {
    background-color: white;
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 15px;
    min-width: 290px;
    max-width: 290px;
    filter: drop-shadow(1px 1px 3px #a6a6a6);
    float: left;
    margin-left: 30px;
    margin-bottom: 30px;
}

.email-textbox {
    background-color: yellowgreen;
}

.pay-detail {
    background-color: white;
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 15px;
    min-width: 290px;
    max-width: 290px;
    filter: drop-shadow(1px 1px 3px #a6a6a6);
    float: left;
    margin-left: 30px;
}

.pay-detail-tagline {
    font-size: 0.8em;
    color: #a6a6a6;
    font-weight: bold;
}

.div-line {
    border-bottom: 1px solid #ddd;
    margin-top: 10px;
    margin-bottom: 10px;
}

.pay-detail-total {
    font-size: 20px;
    font-weight: 400;
}

.detail {
    background-color: #F5F5F5;
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 15px;
    width:100%;
    min-width: 350px;
    /*max-width: 350px;*/
    height: 180px;
    filter: drop-shadow(1px 1px 3px #a6a6a6);
    margin-bottom: 20px;
}
.last-detail {
    background-color: #F5F5F5;
    border: 1px solid lightgray;
    border-radius: 10px;
    padding: 15px;
    filter: drop-shadow(1px 1px 3px #a6a6a6);
}

.empty-basket {
    min-width: 200px;
    max-width: 350px;
    margin: 0 auto;
    padding: 15px;
    filter: drop-shadow(1px 1px 3px #a6a6a6);
    background-color: #F5F5F5;
    border: 1px solid lightgray;
    border-radius: 10px;
    text-align: center;
}

.detail_image {
    float: left;
    margin-top: 0px;
    margin-left: 15px;
    margin-right: 25px;
    width: 60px;
}
.detail_image img {
    width: 60px;
}

.detail_title {
    margin: 20px;
    vertical-align: central;
    margin-bottom: 0.1em;
    color: #4c4c4c;
    font-size: 1.0em;
    font-weight: 900;
    height: 60px;
}

.detail_price {
    text-align:right;
    font-size: 20px;
}


.paypal-checkout {
    /*background: url('/images/buttons/paypal.png') no-repeat 0 0;*/
    background: url('https://www.paypalobjects.com/digitalassets/c/website/marketing/apac/C2/logos-buttons/44_Yellow_CheckOut_Pill_Button.png') no-repeat 0 0;
    /*background-size: 172px; */
    background-position-x: center;
    border: 0;
    height: 61px;
    width: 260px;
    filter: drop-shadow(1px 1px 5px #a6a6a6);
}


.basket-remove-button {
    border: 1px solid darkblue;
    border-radius: 15px;
    color: #000;
    background-color: dodgerblue;
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 15px 5px 15px;
    text-decoration: none;
    transition: all 300ms ease-in-out;
    border-color: darkblue;
    color: #fff;
    letter-spacing: 2px;
    height: 30px;
    text-align: center;
    filter: drop-shadow(1px 1px 3px #a6a6a6);
    /*    border: 1px solid #9dd1ff;
    border-radius: 15px;
    color: #000;
    background-color: #BDBDBD;
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 5px;
    text-decoration: none;
    transition: all 150ms ease-in-out;
    border-color: lightskyblue;
    color: #fff;
    width: 100px;
    height: 30px;
    text-align: center;
    filter: drop-shadow(1px 1px 3px #a6a6a6);*/
}

    .basket-remove-button:hover,
    .basket-remove-button:focus {
        background-color: darkblue;
        color: #fff;
        text-decoration: none;
    }

.basket-continue-button {
    border: 1px solid darkblue;
    border-radius: 15px;
    color: #000;
    background-color: dodgerblue;
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 15px 5px 15px;
    text-decoration: none;
    transition: all 300ms ease-in-out;
    border-color: darkblue;
    color: #fff;
    height: 30px;
    text-align: center;    
    filter: drop-shadow(1px 1px 3px #a6a6a6);
}

    .basket-continue-button:hover,
    .basket-continue-button:focus {
        background-color: darkblue;
        color: #fff;
        text-decoration: none;
    }


.isa_info, .isa_success, .isa_warning, .isa_error {
    margin: 0px 0px;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.isa_info {
    color: #00529B;
    background-color: #BDE5F8;
    filter: drop-shadow(1px 1px 3px #a6a6a6);
}

.isa_success {
    color: #4F8A10;
    background-color: #DFF2BF;
    filter: drop-shadow(1px 1px 3px #a6a6a6);
}

.isa_warning {
    color: #9F6000;
    background-color: #FEEFB3;
    filter: drop-shadow(1px 1px 3px #a6a6a6);
}

.isa_error {
    color: #D8000C;
    background-color: #FFD2D2;
    filter: drop-shadow(1px 1px 3px #a6a6a6);
}

    .isa_info i, .isa_success i, .isa_warning i, .isa_error i {
        margin: 5px 12px;
        font-size: 2em;
        vertical-align: middle;
    }