.cpz-main-calc-holder {

    width: 100%;

    margin: 3rem auto;

    background: #fff;

    padding: 40px 25px;

    box-shadow: 0px 0px 10px 24px rgba(152, 152, 152, 0.06);

    position: relative;

}

.cpz-main-calc-holder .cpz-overlay {

    position: fixed;

    z-index: 5000;

	padding : 300px 0;
	
    text-align: center;

    top: 0;

    right: 0;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffffc9;

    font-size: 22px;

    font-weight: bold;

    opacity: 0;

    pointer-events: none;

    transition: all 300ms ease-in-out;

}

.cpz-main-calc-holder .cpz-overlay.show {

    opacity: 1;

    pointer-events: auto;

}

.cpz-main-calc-holder .cpz-title-area {

    text-align: center;

    margin-bottom: 2rem;

    margin-top: 16px;

}

.cpz-main-calc-holder .cpz-title-area h3 {

    margin-bottom: 15px;

}

.cpz-flex {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin: 3rem 26px 0px;

    flex-wrap: wrap;

}

.cpz-callback-holder .cpz-flex {

    margin-bottom: 0;

    justify-content: center;

}

.cpz-each-flex-item {

    display: flex;

    align-items: flex-start;

    flex-direction: column;

    flex-grow: 1;

    padding: 0 5px;

    margin-bottom: 15px;

}

.cpz-each-flex-item label {

    font-weight: bold;

}

.cpz-each-flex-item select {

    width: 100%;

    line-height: 34px;

    padding: 0 5px;

    border-radius: 4px;

    outline: none;

    border: 1px solid #eee;

}

.cpz-each-flex-item input {

    width: 100%;

    line-height: 34px;

    padding: 0 5px;

    border-radius: 4px;

    outline: none;

    border: 1px solid #eee;

}

#cpz-calc-all {

    background: #FF6600;

    color: #fff;

    border: unset;

    border-radius: 4px;

    padding: 6px 32px;

    box-shadow: 3px 6px 8px #ccc;

    font-size: 18px;

    margin-left: 3rem;

}

.cpz-call-back-input {

    text-align: center;

    font-weight: bold;

}

@media (max-width: 768px){

    .cpz-callback-holder .cpz-flex {

        flex-direction: column;

        justify-content: center;

        margin-top: 2rem;

    }

    .cpz-callback-holder .cpz-flex #cpz-calc-all {

        margin-bottom: 2rem;

    }

    .cpz-each-flex-item {

        flex-basis: 100%;

    }

    #cpz-calc-all {

        margin-left: 0;

    }

}

@media (max-width: 500px) {

    .cpz-callback-holder .cpz-flex .cpz-each:last-child {

        text-align: center;

        justify-content: center;

    }

}