.container-fluid  {
    background-color: #fff;
}
.atp-container  {
    font-family: 'Roboto', sans-serif;
    line-height: 150%;
}
.wrap.container-fluid.atp-container .atp-logo {
    font-size: 24px;
    font-weight: 700;
    padding: 1em 0;
}
/*****************************************
                TABS
*****************************************/
.atp-tab.nav-tab {
    border: 1px solid #EDF2F7;
    padding: 10px 30px;
    font-size: 15px;
    background-color: #FFF;
    color: #333;
}
.atp-tab.nav-tab:hover, .atp-tab.nav-tab.nav-tab-active {
    background: rgba(237, 242, 247, 0.7);
}
.nav-tab-wrapper, .wrap h2.nav-tab-wrapper, h1.nav-tab-wrapper {
    border-bottom: 3px solid #EDF2F7;
}

/*****************************************
                Segment
*****************************************/
.atp-segment {
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(226, 232, 240, 0.7);
    margin: 30px 0;
}
.atp-segment h2 {
    margin-top: 0;
    margin-bottom: 1em;
    border-bottom: 1px dashed #aaa;
    text-transform: uppercase
}
/*****************************************
                Form
*****************************************/
.atp-container .atp-input,
.atp-container .atp-select,
.atp-container .atp-textarea {
    width: 100%;
    padding: 2px 10px;
    color: #333;
    border: 1px solid #E2E8F0;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.atp-container .atp-textarea {
    height:150px;
}
.atp-container .atp-disabled {
    background-color: #f1f1f1;
}

.atp-container .atp-submit, .atp-btn {
    display: block;
    width: 100%;
    background-color: #6BBD6E;
    color: #fff;
    border: 0;
    border-radius: 3px;
    padding: 8px 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.atp-container .atp-submit:hover, .atp-btn:hover {
    background-color: #50ad53;
    color: #fff;
    cursor: pointer;
}

/*****************************************
            TOGGLE CHECKBOX
*****************************************/
.atp-container .atp-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
  
.atp-container .atp-toggle input {
    display:none;
}
  
.atp-container .atp-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
  
.atp-container .atp-toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 5px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.atp-container input:checked + .atp-toggle-slider {
    background-color: #6BBD6E;
}

.atp-container input:focus + .atp-toggle-slider {
    box-shadow: 0 0 1px #6BBD6E;
}

.atp-container input:checked + .atp-toggle-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
  
.atp-container .atp-toggle-slider.atp-toggle-round {
    border-radius: 3px;
}

.atp-container .atp-toggle-slider.atp-toggle-round:before {
    border-radius: 1px;
}
/*****************************************
                ALERTS
*****************************************/
.atp-alert {
    padding: 10px;
    padding-left: 15px;
    border-radius: 5px;
    border-left: 4px solid #3b8fd2;
    margin: 10px 0 5px;
    line-height: 150%;
    color: #fff;
}
.atp-alert a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dotted;
}
.atp-alert.atp-info {
    background-color: #47A8F5;
}
.atp-alert.atp-note a {
    color: #333;
}
.atp-alert.atp-note {
    color: #333;
    background-color:rgba(237, 242, 247, 0.7);
    border-color: #e4ebf3;
}
.atp-alert.atp-note .closebtn {
    color: #333;
}
.closebtn {
    color: white;
    float: right;
    font-size: 22px;
    line-height: 18px;
    cursor: pointer;
    transition: 0.3s;
}
.closebtn:hover {
    color: black;
}


.atp-comment {
    margin-bottom: 0;
    color: #888;
}

/* .row {
    margin: 10px 0;
} */