@charset "utf-8";

.btn_wrap {margin:20px 0;overflow: hidden;}
.btn_wrap .btn {margin-right:10px; margin-left:0; min-width:110px;}
.btn_wrap .btn:last-child {margin-left:0; margin-right:0px;}

.btn_wrap .left {float:left; display: inline-block;}
.btn_wrap .right {float:right; display: inline-block;}

.btn {
    display: inline-block;
    position: relative;
    max-width: 100%;
    margin: 0;
    transition: all .15s ease-in-out;
    border: 1px solid;
    border-radius: 2px;
    border-color: #041827;
    background-color: #041827;
    color: #fff;
    font-weight: 400;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn:hover {
	border-color: #000;
    background-color: #000;
}

.btn a,
.btn button,
.btn span,
.btn input {display:block; font-size:13px; line-height:1em; background:transparent; border:0; padding:10px 20px ; color:#fff; cursor:pointer;}
.btn input:hover {border:0 !important;}

.btn.round10 { border-radius: 10px; }
.btn.round15 { border-radius: 15px; }
.btn.round20 { border-radius: 20px; }
.btn.round25 { border-radius: 25px; }
.btn.round30 { border-radius: 30px; }

/* red */
.btn.red {background-color: #c24436; border-color: #c24436;}

/* yellow */
.btn.yellow {background-color:#FFC107;border-color: #FFC107;}

/* green */
.btn.green {background: #39b54a; border-color: #39b54a;}

/* sky */
.btn.sky {background-color:#4FC3F7; border-color: #4FC3F7;}

/* navy */
.btn.navy {background-color:#14146b; border-color: #14146b;}

/* blue */
.btn.blue {background-color: #3658b9; border-color: #3658b9;}

/* gray */
.btn.gray {background-color:#757575; border-color: #757575;}

/* purple */
.btn.purple {background-color:#5055cd; border-color: #5055cd;}

/* white */
.btn.white,
.btn.white {background-color:#fff; border-color: #aaa; color:#333;}
.btn.white a {color:#333;}

/* small */
.btn.xs a {font-size:14px; line-height:1em; padding:6px 12px;}


.cont_radio {
    display: inline-block;
    position: relative;
    padding-left: 18px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin:-5px 10px -5px 0;
}

/* Hide the browser's default radio button */
.cont_radio input {
    position: absolute;
    opacity: 0;
    width:0 !important;
    height:0 !important;
}

/* Create a custom radio button */
.cont_radio .checkmark {
    position: absolute;
    top:8px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #ddd;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.cont_radio:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.cont_radio input:checked ~ .checkmark {
    background-color: #2d4341;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.cont_radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.cont_radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.cont_radio .checkmark:after {
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

/* check btn */

/* Customize the label (the container) */
.cont_check {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    margin-right:10px;
    vertical-align:middle;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.cont_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.cont_check input[type="checkbox"] {
	width:auto; max-width:0; z-index:-9999;
}

/* Create a custom checkbox */
.cont_check .checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 14px;
    width: 14px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.cont_check:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.cont_check input:checked ~ .checkmark {
    background-color: #2d4341;
}

/* Create the checkmark/indicator (hidden when not checked) */
.cont_check .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.cont_check input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.cont_check .checkmark:after {
    left: 5px;
    top: 1px;
    width: 3px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
