/*! Place your custom styles here */

#salesPopup{ width:100%; background:none;}
.salepop{ width:100%;  background-image: -moz-linear-gradient(45deg, #4970b1 0%, #c52b2e 100%);
  background-image: -webkit-linear-gradient(45deg, #4970b1 0%, #c52b2e 100%);
  background-image: -ms-linear-gradient(45deg, #4970b1 0%, #c52b2e 100%); color:#FFFFFF; border-radius:6px; }
.modal-content-pop {
	position:relative;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-ms-flex-direction:column;
	flex-direction:column;
	width:100%;
	pointer-events:auto;
	
	background-clip:padding-box;
	/*border:1px solid rgba(0, 0, 0, .2);*/
border-radius:.3rem;
	outline:0
}

.modal-content-pop p{ font-size:24px;}
.modal-content-pop a{ background-color:#CC0000; color:#FFFFFF; border-radius:30px; padding:12px;  }
.modal-content-pop a:hover{ color:#fff; background-color:000;
   }
         .modal-content-pop .btn{  border-radius:30px; padding:10px; margin-bottom:20px;}

.remodal-close {
    position: absolute; border:none;
    top: 9px;
    right: 9px;
    width: 30px;
    height: 30px;
    -webkit-transition: background 0.2s ease-out;
    -moz-transition: background 0.2s ease-out;
    -o-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out;
    text-decoration: none;
    -webkit-border-radius: 100%;
    border-radius: 100%; 
	
}

.remodal-close:after {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    line-height: 25px;
    width: 30px;
    height: 30px;
    display: block;
    /*content: "×";*/
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    text-decoration: none;
    color: #fff;  -webkit-border-radius: 100%;
    border-radius: 100%; font-weight:bold; 
}

.remodal-close:hover,
.remodal-close:active {
    background: #fff; text-decoration:none; 
}

.remodal-close:hover.remodal-close:after,
.remodal-close:active.remodal-close:after {
    color: #df388b;
}


@media (max-width: 480px) {
 
	 .modal-content-pop .btn{ color:#FFFFFF; border-radius:30px; padding:10px; margin-bottom:20px;/*background-color:#CCCCCC;*/ margin-right:20px;  float:left;}
              .modal-content-pop a{ margin-left:0px;}
			      .logo{ margin-left:25%;}
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transition: -webkit-transform 0.3s ease-out;
        transition: -webkit-transform 0.3s ease-out;
        -o-transition: -o-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
        transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
        -webkit-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%);
    }

    .modal.show .modal-dialog {
        -webkit-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.show {
        opacity: 0.5;
    }

.modal-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eceeef;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 15px;
}

.modal-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 15px;
    border-top: 1px solid #eceeef;
}

    .modal-footer > :not(:first-child) {
        margin-left: .25rem;
    }

    .modal-footer > :not(:last-child) {
        margin-right: .25rem;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 30px auto;
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }
}
.successContent, .errorContent {
    margin-bottom: 20px;
    display: none;
    text-transform: none;
    letter-spacing: 0px;
}
