﻿/*************************************************************/
/* MODAL & CONFIRMATION POPUP                                */
/*************************************************************/

.modal,
.confirmation
{
    display: inline-block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 500px;
    background: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    box-sizing: border-box;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 10001;
}

    .modal .modalContent {
        text-align: center;
    }
    
    .confirmation .modalContent {
        text-align: center;
        padding: 0px 30px 30px 30px;        
    }


    .modal .close {
        background: #eee;
        color: #00B3E8;
        width: 100%;
        display: inline-block;
        text-align: center;
        padding: 20px 0px 20px 0px;
        -webkit-border-bottom-right-radius: 20px;
        -webkit-border-bottom-left-radius: 20px;
        -moz-border-radius-bottomright: 20px;
        -moz-border-radius-bottomleft: 20px;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
        cursor: pointer;
    }

    .confirmation .button {
        color: #fff;                
        width: 50%;
        display: inline-block;
        text-align: center;
        padding: 20px 0px 20px 0px;
        cursor: pointer;
        float: left;
    }

        .confirmation .button.left {
            background: #F47745;
            -webkit-border-bottom-left-radius: 20px;
            -moz-border-radius-bottomleft: 20px;
            border-bottom-left-radius: 20px;
        }

        .confirmation .button.right {
            background: #7CBD42;
            -webkit-border-bottom-right-radius: 20px;
            -moz-border-radius-bottomright: 20px;
            border-bottom-right-radius: 20px;
        }

        .confirmation .button.disabled {
            background: #eee;
            color: #959596;
            cursor: not-allowed;
        }


/*************************************************************/
/* BACK SPLASH                                               */
/*************************************************************/

.backSplash {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #aaaaaa;
    opacity: 0.4;
    cursor: pointer;
}

    .backSplash.clear {
        opacity: 0;
        cursor: pointer;
    }


/*************************************************************/
/* MODAL BBACKGROUND IMAGES                                  */
/*************************************************************/

.background-hanghole:before {
    content: ' ';
    background-image: url("../image/ModalHeader_Undefined.png")
}

.background-hanghole {
    background-image: url("../image/ModalHeader_HangHole.png"), url("../image/ModalHeader_Undefined.png")
}

.background-corner {
    background-image: url("../image/ModalHeader_RoundedCorner.png"), url("../image/ModalHeader_Undefined.png")
}

.background-seal {
    background-image: url("../image/ModalHeader_Seal.png"), url("../image/ModalHeader_Undefined.png")
}

.background-tearnotch {
    background-image: url("../image/ModalHeader_TearNotch.png"), url("../image/ModalHeader_Undefined.png")
}

.background-zipper {
    background-image: url("../image/ModalHeader_Zipper.png"), url("../image/ModalHeader_Undefined.png")
}

.background-valve {
    background-image: url("https://styleguide.epacllc.com/images/ModalHeader_Valve.png"), url("../image/ModalHeader_Undefined.png")
}

.background-undefined {
    background-image: url("../image/ModalHeader_Undefined.png")
}



/*************************************************************/
/* MEDIA QUERIES                                             */
/*************************************************************/

/*************************************************************/
/* MEDIA QUIERIES                                            */
/*************************************************************/

@media (max-width: 1024px) {
}

@media (max-width: 640px) {
    .modal,
    .confirmation {
        top: 20%;
        left: 10%;
        transform: translate(0%, -10%);
        width: 80%;
    }
}

.sectionModalContent {
    display: inline-block;
    width: 100%;
}

    .sectionModalContent .content {
        font-size: 18px;
        font-weight: 400;
        padding: 10px;
        max-height: 200px;
        overflow-y: auto;
    }

    .sectionModalContent .image {
        height: 200px;
        width: 100%;
        -webkit-border-top-left-radius: 20px;
        -webkit-border-top-right-radius: 20px;
        -moz-border-radius-topleft: 20px;
        -moz-border-radius-topright: 20px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

@media (max-width: 320px) {
}
