﻿body {
}
* {
    -webkit-boxsizing: border-box;
    -moz-boxsizing: border-box;
    box-sizing: border-box;
}
.__btn {
    position: relative;
    display: inline-block;
    padding: 8px 15px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #666;
    text-align: center;
    white-space: nowrap;
    vertical-align: top;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 5px;
}
.__btn:hover,
.__btn:active{
    background-color:#fff;
    color: #ff6600;
    border: 1px solid #ccc;
}

.button-group {
    text-align: center;
}

.modal {
    position: fixed;
     -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    background-color: transparent;
    opacity: 0;
    -webkit-transition: -webkit-transform .25s, opacity 1ms .25s;
    -moz-transition: -moz-transform .25s, opacity 1ms .25s;
    transition: transform .25s, opacity 1ms .25s;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.modal.active {
    opacity: 1;
    -webkit-transition: -webkit-transform .25s;
    -moz-transition: -moz-transform .25s;
    transition: transform .25s;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    background-color: rgba(0, 0, 0, .4);
}

.modal-wrapper {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.modal-inner {
    margin: 0 auto;
    width: 90%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 0 3px rgba(0,0,0,.1);
}

.modal-title {
    padding: 8px;
    position: relative;
    line-height: 1.5;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    background-color: #f5f5f5;
}

.modal-title .modal-close {
    position: absolute;
    right: 12px;
    color: #999;
    cursor: pointer;
    text-transform: uppercase;
}

.modal-body {
    margin: 10px 10px 15px;
    background: #fff;
}

.modal-body-info {
    margin-bottom: 10px;
    font-size: 14px;
}