/*! * CSS Modal
 * Copyright (c) 2015 CreativeDream
 * Website http://creativedream.net/plugins
 * Version: 1.2.3 (10-04-2015)
*/
#modal-window {
    background-color: rgba(0, 0, 0, 0.6) !important;
	z-index:99999999 !important;
}

#modal-window > * {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

#modal-window .modal-box {
    position: absolute;
    margin-bottom: 10px;
    background-color: #ffffff;
    color: #444;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
    -webkit-background-clip: padding-box;
       -moz-background-clip: padding-box;
            background-clip: padding-box;
    -webkit-box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
       -moz-box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0px 7px rgba(0, 0, 0, 0.3);
    outline: none;
    overflow: hidden;
}

/* Modal Sizes */
#modal-window .modal-box.modal-size-normal {
    width: 460px;
}

#modal-window .modal-box.modal-size-small {
    width: 350px;
}

#modal-window .modal-box.modal-size-large {
    width: 1000px;
}

/* Modal Responsive */
@media only screen and (max-width : 580px){
	#modal-window .modal-box.modal-size-normal{
		width: 96%;
		left: 0 !important;
		margin-left: 2% !important;
		margin-right: 2%;
	}
}
@media only screen and (max-width : 1020px){
	#modal-window .modal-box.modal-size-large{
		width: 96%;
		left: 0 !important;
		margin-left: 2% !important;
		margin-right: 2%;
	}
}
@media only screen and (max-width : 370px){
	#modal-window .modal-box.modal-size-small{
		width: 96%;
		left: 0 !important;
		margin-left: 2% !important;
		margin-right: 2%;
	}
}

/* 

    Modal Title

*/	
#modal-window .modal-box .modal-title {
    display: block;
	font-size: 1.8rem;
	padding:30px 15px 15px;
	line-height: 2.7rem;
	text-align: center;
	color: #222;
	position: relative;
	font-weight: 800;
}

#modal-window .modal-box .modal-title h3 {
   color: #222;font-size: 1.8rem;line-height: 2.7rem;font-weight: 800;
}
/* Modal Close Button */
#modal-window .modal-box .modal-title .modal-close-btn {
    position:absolute;right:15px;top:16px;width:22px;height:22px;background-position:center center;background-size:contain;background-repeat:no-repeat;background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-x' width='24' height='24' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M18 6l-12 12' /%3E%3Cpath d='M6 6l12 12' /%3E%3C/svg%3E");text-indent:999em;overflow:hidden;cursor:pointer;}


#modal-window .modal-box .modal-title .modal-close-btn:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}

/* 

    Modal Text

*/	
#modal-window .modal-box .modal-text {
    font-size: 14px;
    padding: 0 15px 30px;
    overflow-y: auto;
	text-align: center;
	font-size: 1.4rem;
	line-height: 2.0rem;
	color: #222;
	word-break: keep-all;
}

#modal-window .modal-box img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
    -ms-interpolation-mode: bicubic;
}

/* Modal Prompt Input */
#modal-window .modal-box .modal-text input.modal-prompt-input {
    width: 97%;
    width: -webkit-calc(100% - 14px);
    width: -moz-calc(100% - 14px);
    width: calc(100% - 14px);
    display: block;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 1px solid #dddddd;
    border-top: 1px solid #cccccc;
    margin: 10px 0px 10px 0px;
    padding: 6px;
    color: #333333;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 0px 2px #eeeeee;
    -moz-box-shadow: inset 0px 0px 2px #eeeeee;
    box-shadow: inset 0px 0px 2px #eeeeee;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

#modal-window .modal-box .modal-text input.modal-prompt-input:hover {
    border: 1px solid #bbbbbb;
    border-top: 1px solid #aaaaaa;
}

#modal-window .modal-box .modal-text input.modal-prompt-input:focus,
#modal-window .modal-box .modal-text input.modal-prompt-input:active {
    border-color: rgba(82, 168, 236, 0.8);
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.3);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.3);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.3);
}

/* 

    Modal Buttons 

*/	
#modal-window .modal-box .modal-buttons {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}

#modal-window .modal-box .modal-buttons a.modal-btn {
    display: table-cell;
    text-align: center;
    height: 51px;
    vertical-align: middle;
    font-size: 1.6rem;cursor:pointer;
    color: #333
}

#modal-window .modal-box .modal-buttons a.modal-btn:active,a.modal-btn:focus {
    outline: none !important;
}

#modal-window .modal-box .modal-buttons a.modal-btn:active,a.modal-btn.active {
    -webkit-box-shadow: inset 0 0 7px rgba(0,0,0,0.2);
    -moz-box-shadow: inset 0 0 7px rgba(0,0,0,0.2);
    box-shadow: inset 0 0 7px rgba(0,0,0,0.2);
}

#modal-window .modal-box .modal-buttons a.modal-btn+a.modal-btn {
    margin-left: 5px;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .65;
    filter: alpha(opacity=65);
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-large {
    padding: 8px 14px;
    font-size: 16px;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-small {
    padding: 6px 8px;
    font-size: 10px;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-rounded {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-circle {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-square {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

#modal-window .modal-box .modal-buttons a.modal-btn i,
#modal-window .modal-box .modal-buttons a.modal-btn img {
    vertical-align: middle;
    display: inline-block;
    float: left;
    max-height: 16px;
    margin-right: 5px;
}

#modal-window .modal-box .modal-buttons a.modal-btn {
    background-color: #F0F0F0;
    color: #000;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-green {
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-green:hover {
    background-color: #449d44;
    border-color: #398439;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-purple {
    background-color: #8149B4;
    border-color: #6922AD;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-purple:hover {
    background-color: #6f32a8;
    border-color: #5b149e;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-orange {
    background-color: #f7aa47;
    border-color: #eea236;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-orange:hover {
    background-color: #f69f2f;
    border-color: #d58512;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-pink {
    background-color: #ff6264;
    border-color: #eb5b5c;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-pink:hover {
    background-color: #ff484b;
    border-color: #e53a3d;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-turquoise {
    background-color: #00b19d;
    border-color: #11a594;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-turquoise:hover {
    background-color: #009886;
    border-color: #0b8173;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-light-green {
    background-color: #8dc63f;
    border-color: #7db432;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-light-green:hover {
    background-color: #82b838;
    border-color: #75a336;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-light-blue {
    background-color: #333;
    border-color: #333;
    color: #fff;
}


#modal-window .modal-box .modal-buttons a.modal-btn.btn-blue {
    background-color: #0e62c7;
    border-color: #0D54AA;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-blue:hover {
    background-color: #0c56af;
    border-color: #0B4992;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-red {
    background-color: #cc3f44;
    border-color: #bd1b21;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-red:hover {
    background-color: #ab2d32;
    border-color: #96050b;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-light-red {
    background-color: #d9534f;
    border-color: #d43f3a;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-light-red:hover {
    background-color: #c9302c;
    border-color: #ac2925;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-yellow {
    background-color: #ffba00;
    border-color: #e4a703;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-yellow:hover {
    background-color: #f0bb2e;
    border-color: #dba71a;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-black {
    background-color: #444;
    border-color: #313131;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-black:hover {
    background-color: #333;
    border-color: #222;
    color: #fff;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-white {
    background-color: #fff;
    color: #555;
    border: 1px solid #ddd;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-white:hover {
    background-color: #f7f7f7;
    border: 1px solid #ccc;
}

#modal-window .modal-box .modal-buttons a.modal-btn.btn-white:active,#modal-window .modal-box .modal-buttons a.modal-btn.btn-white:focus {
    -webkit-box-shadow: inset 0px 0px 10px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 0px 0px 10px rgba(0,0,0,0.1);
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.1);
}

/* 

    Modal Title Types

*/	


#modal-window .modal-box.modal-type-success .modal-title,
#modal-window .modal-box.modal-type-warning .modal-title,
#modal-window .modal-box.modal-type-error .modal-title,
#modal-window .modal-box.modal-type-info .modal-title,
#modal-window .modal-box.modal-type-inverted .modal-title,
#modal-window .modal-box.modal-type-primary .modal-title {
    color: #222;
    border-bottom-color: transparent;
}
/* Modal Close Button White Color*/
#modal-window .modal-box.modal-type-success .modal-title .modal-close-btn,
#modal-window .modal-box.modal-type-warning .modal-title .modal-close-btn,
#modal-window .modal-box.modal-type-error .modal-title .modal-close-btn,
#modal-window .modal-box.modal-type-info .modal-title .modal-close-btn,
#modal-window .modal-box.modal-type-inverted .modal-title .modal-close-btn,
#modal-window .modal-box.modal-type-primary .modal-title .modal-close-btn {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='icon icon-tabler icon-tabler-x' width='24' height='24' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M18 6l-12 12' /%3E%3Cpath d='M6 6l12 12' /%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;
}

/*

    Modal Reseted Theme
*/
#modal-window .modal-box.modal-theme-reseted{
    background: none;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}
#modal-window .modal-box.modal-theme-reseted .modal-title{
    border-bottom: 0;
    padding: 0;
}
#modal-window .modal-box.modal-theme-reseted .modal-title .modal-close-btn{
    right: 0;
}
#modal-window .modal-box.modal-theme-reseted .modal-text{
    padding: 0;
}
#modal-window .modal-box.modal-theme-reseted .modal-buttons{
    border-top: 0;
    background: none;
    padding: 0;
}