/*
 * The Modal (background)
 * Link: https://github.com/a-sabagh/CodeSnippet/tree/master/jquery.modal
*/
/* The Modal (background) */
.rngfdk-modal-class {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    padding-top: 10%; /* Location of the box */
    right: 0;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    z-index: 999;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* The Close Button */
.modal-close {
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    left: .5em;
    top: .2em;
    line-height: 1em;
}

.modal-body,.modal-footer,.modal-header { padding: 2px 16px; }
.modal-header h4{
    display: inline-block;
    padding: .3em 0;
    font-size: 1.4em;
    margin-bottom: 0;
    line-height: 1.5em;
}
/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* modal-content width */

.modal-content { width: 768px; }
@media screen and (max-width: 768px){
    .modal-content {
        width: auto;
        margin: 0 30px;
    }
}
.satisfication,.dissatisfication-link {
    cursor: pointer;
}
.dissatisfication-link.underline {
    border-bottom: 1px dotted red;
}
/*default form styles*/
.rngfdk-field-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.field-column-50 {
    width: 49%;
}
.field-column-50 * {
    display: block;
    width: 100%;
}
@media (max-width: 480px){
    .field-column-50{width: 100%;}
    .field-column-50:first-child *{margin-bottom: 10px;}
}
.field-column-100,.field-column-100 * {
    display: block;
    width: 100%;
}
.field-column-100 textarea {
    max-height: 6em;
}
.rng-product-feedback {
    position: relative;
    padding: 1em 0;
}
.rngfdk-preloader {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255,255,255,.85);
}
.rngfdk-thank-you {
    border: 2px solid green;
    padding: 1em 1.1em;
}
.rngfdk-thank-you p{
    margin: 0;
    padding: 0;
}
.d-flex{
    display: flex;
}
.justfy-content-start {
    justify-content: start;
    align-items: center;
}
.rngfdk-form-msg {
    display: none;
    margin: 0 1em;
    border: 2px solid green;
    padding: .45em 1em;
}
/*
 * Preloader
 * Link: https://loading.io/css/
 */
.rngfdk-form-preloader {
    position: absolute;
    right: 9.5em;
    bottom: 2em;
    background: white;
    display: none;
}
.rngfdk-lds-dual-ring {
    display: none;
    width: 30px;
    height: 30px;
}
.rngfdk-lds-dual-ring {
    display: inline-block;
    width: 30px;
    height: 30px;
}
.rngfdk-lds-dual-ring:after {
    content: " ";
    display: block;
    width: 25px;
    height: 25px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #ff9fff;
    border-color: #ff9fff transparent #ff9fff transparent;
    animation: rngfdk-lds-dual-ring 1.2s linear infinite;
}
@keyframes rngfdk-lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
