/**
 * This css file contains style sheet for alerts
 *
 */

.fc--alert-popup-container1 {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: rgba(0,0,0,.32);
    justify-content: center;
    align-items: center;
    display: flex;
    
    z-index: 5;
}

.fc--alert-popup-container1 .fc--alert-popup1 {
	border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.12);
    width: 600px;
    margin: auto;    
    background: #fff;
}
.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-header1  {
    background-color: #d0021b;
	text-align: left;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.22;
    letter-spacing: 1.6px;
    color: #fff;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-header1 .fc--close-alert1 {
    width: 40px;
    height: 40px;
    padding-top: 8px;
    padding-left: 8px;
    cursor: pointer;
}
.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-header1 .fc--close-alert1 svg {
    width: 24px;
    height: 24px;
    padding: 0;
    fill: #fff;
}

.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-header1 > svg {
    width: 120px;
    height: 120px;
    fill: #fff;
    display: block;
    padding: 8px 0 0;
    margin: auto;
}
.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-body1 {
	color: #d0021b;
	text-align: left;
    font-family: "Source Sans Pro",sans-serif;
    padding: 24px;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.43;
    letter-spacing: normal;
    max-height: calc(90vh - 240px - 90px);
    min-height: 70px;
    overflow: auto;
}

.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-body1 a {
	color:#0093ee;
}

.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-footer1 {
    padding: 24px;
    text-align: right;
}
.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-footer1 button:hover {
    background: rgba(0,0,0, .04) !important;
}
.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-footer1 button {
    border-radius: 4px;
    border: 1px solid;
    padding: 11px 23px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;

    background-color: #fafafa;
    border-color: #ccc;
    min-width: 110px;
    color: rgba(0,0,0,.54);
    cursor: pointer;
    outline: 0;
}
.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-footer1 button:nth-child(1) {
    background: #fff;
    border-width: 0;
    margin-right: 32px;
}
.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-footer1 button.fc--button-border1 {
    background: #fafafa !important;
    border-width: 1px !important;
    margin-right: 0 !important;
}
.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-footer1 button.fc--button-border1.f-button-blue-new {
	color: #0093ee !important;
	height: 40px !important;
	font-weight: 600 !important;
}
.fc--alert-popup-container1 .fc--alert-popup1 .fc--alert-footer1 button.fc--button-border1.f-button-green-new {
	background-color: #5da93f !important;
	border-color: #5da93f !important;
	color: #fff !important;
	height: 40px !important;
	font-weight: 600 !important;
}

.fc--alert-popup-container1 .fc--alert-popup1.fc--info-popup1 .fc--alert-header1 {
    background-color: #4a90e2 !important;
}
.fc--alert-popup-container1 .fc--alert-popup1.fc--info-popup1 .fc--alert-body1 {
    color: rgba(0,0,0,.87) !important;
}
.fc--alert-popup-container1 .fc--alert-popup1.fc--danger-popup1 .fc--alert-body1 {
    color: rgba(0,0,0,.87) !important;
}

.fc--flex1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.fc--flex-21 {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}
.fc--flex-bottom1 {
    align-self: flex-end;
}
.fc--flex-v-center1 {
    -ms-flex-item-align: center;
    align-self: center;
}
.fc--flex-align-right1 {
    justify-content: flex-end
}
.fc--text-align-right1 {
    text-align: right;
}
.fc--text-align-center1 {
    text-align: center;
}