.arcticmodal-overlay { display: none !important; }

.arcticmodal-overlay,
.arcticmodal-container {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}
.arcticmodal-overlay {
    display: block!important;
    opacity: 0;
}
.arcticmodal-container { 
    overflow: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-collapse: collapse;
}
*:first-child+html .arcticmodal-container { 
    height: 100% 
}
.arcticmodal-container_i { 
    height: 100%;
    margin: 0 auto;
}
.arcticmodal-container_i2 { 
    padding: 24px;
    margin: 0;
    border: 0;
    vertical-align: middle;
}
.arcticmodal-error { 
    padding: 20px;
    border-radius: 10px;
    background: #000;
    color: #fff;
}
.arcticmodal-loading { 
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #000 url(img/loading.gif) no-repeat 50% 50%;
}

.m-box-modal {
    position: relative;
    max-width: 700px;
    background-color: #FFF;
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15), 0 8px 30px -5px rgba(0, 0, 0, .5);
    -moz-box-shadow: inset 1px 1px 10px #aaa;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15), 0 8px 30px -5px rgba(0, 0, 0, .5);
    color: #000;
}
    .m-box-modal .box-modal_close {
        position: absolute;
        top: 0;
        right: -42px;
        width: 32px;
        height: 32px;
        cursor: pointer;
        font-size: 0;
        background: #fff;
        border-radius: 50%;
    }
    .m-box-modal .box-modal_close::after,
    .m-box-modal .box-modal_close::before {
        content: '';
        background: #900A10;
        width: 2px;
        height: 19px;
        position: absolute;
        transform: rotate(45deg);
        top: 7px;
        left: 15px;
    }
    .m-box-modal .box-modal_close::before {
        transform: rotate(-45deg);
    }

    .m-box-modal .b-mod-title {
        padding: 14px 20px 12px 20px;
        border-bottom: 1px solid #e8e7e5;
    }
        .m-box-modal .b-mod-title h1 {
            margin: 0;
            padding: 0;
            color: #000;
            font-size: 15px;
        }
        
        .m-box-modal .b-content-ajax {
            padding: 15px 20px;
        }


.b-up_button {
    position: fixed;
    right: 30px;
    bottom: 50px;
    display: none;
    width: 39px;
    height: 40px;
    z-index: 100;
}

.b-up_button span {
    display: block;
    height: 100%;
    background: url('img/up.jpg') no-repeat 0px 0px;
    opacity: 0.3;
    filter: alpha(opacity=30);
}

/*Radio button*/

.ma_custom_radio_button {
    padding: 0px 0px 0px 20px;
    position: relative;
    background: url('img/button.png') no-repeat 0px 2px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 6px;
}

*+html .ma_custom_radio_button {
    display: inline;
    zoom: 1;
}

*html .ma_custom_radio_button {
    display: inline;
    zoom: 1;
}

.ma_custom_radio_button.checked {
    background-position: 0px -33px;
}

    .ma_custom_radio_button input {
        opacity: 0;
        filter: alpha(opacity=0);
        position: absolute;
        top: 0px;
        left: 0px;
        cursor: pointer;
    }
    
/*Placeholder*/

input.custom-input-placeholder,
textarea.custom-textarea-placeholder {
    color: #000;
}

input.placeholder-color,
textarea.placeholder-color {
    color: #ccc;
}

/*checkbox*/

.ma_custom_checkbox_button {
    padding: 0px 0px 0px 22px;
    position: relative;
    background: url('img/checkbox.png') no-repeat 0px 0px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 6px;
}

*+html .ma_custom_checkbox_button {
    display: inline;
    zoom: 1;
}

*html .ma_custom_checkbox_button {
    display: inline;
    zoom: 1;
}

.ma_custom_checkbox_button.checked {
    background-position: 0px -100px;
}

    .ma_custom_checkbox_button input {
        opacity: 0;
        filter: alpha(opacity=0);
        position: absolute;
        top: 0px;
        left: 0px;
        cursor: pointer;
    }