/* LASK custom CSS */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham/Gotham-Book.woff2') format('woff2'),
       url('../fonts/Gotham/Gotham-Book.woff') format('woff'),
       url('../fonts/Gotham/Gotham-Book.ttf') format('truetype'),
       url('../fonts/Gotham/Gotham-Book.otf') format('otf'),
       url('../fonts/Gotham/Gotham-Book.svg#Gotham-Book') format('svg');
  font-weight: 500;
  font-style: normal;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale; 
}

@font-face {
  font-family: 'Gotham Bold';
  src: url('../fonts/Gotham/Gotham-Bold.woff2') format('woff2'),
       url('../fonts/Gotham/Gotham-Bold.woff') format('woff'),
       url('../fonts/Gotham/Gotham-Bold.ttf') format('truetype'),
       url('../fonts/Gotham/Gotham-Bold.otf') format('otf'),
       url('../fonts/Gotham/Gotham-Bold.svg#Gotham-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale; 
}

body {
    margin: 0;
    background: url(../img/page-bg.jpg) no-repeat top center fixed;
    -webkit-background-size: cover;
       -moz-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
    font-family: "Gotham", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    
}

@media all and (min-width:1200px){
    .container {
        max-width: 1020px;
    }
}
.header-logo{
  width: 100%;
  max-width: 500px;
}


footer {
    background: #000;
    font-size: 1em;
}

a, 
a:active, 
a:focus, 
a:visited {
    color: #000;
}
a:hover {
    color: #000;
    text-decoration: underline;
}

.card-header {
    margin-bottom: 0;
    background: #000;
}
.card-title {
    margin-bottom: 0;
    color: #efefef;
    font-family: "Gotham Bold";
    font-weight: 300;
    text-transform: uppercase;
}

small {
    font-size: 85%;
}

label {
    font-weight: 300;
}

label input[type="checkbox"] {
    margin-right: 0.3rem;
}

.login-remember{
    font-family: "Gotham Bold";
}

.btn-primary.active, 
.btn-primary.focus, 
.btn-primary:focus, 
.btn-primary:hover,
.btn-reg.active, 
.btn-reg.focus, 
.btn-reg:focus, 
.btn-reg:hover {
    background-color: #e20512;
}
.btn-primary, .btn-reg {
    width: 50%;
    min-width: 200px;
    transition: .1s ease;
    text-transform: uppercase;
    background-color: #000;
    border: 0;
    color: #fff;
    font-family: "Gotham Bold";
}
.btn.focus, 
.btn:focus, 
.btn:hover {
    background-color: #e20512;
    text-decoration: none;
    border: 0;
}

.choose {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 1em 0;
    /*
    width: 180px;
    */
}
.choose span {
    flex-grow: 2;
    border-top: 1px solid #ced4da;
}
.choose span:nth-child(2) {
    flex-grow: 1;
    text-align: center;
    border: 0;
    text-transform: uppercase;
    color: #666;
}

/* CARD */

:first-child.card-header {
    border-radius: 0;
}
.card {
    border: 0;
    border-radius: 0;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
}

.form-control:focus {
    border-color: #000;
    box-shadow: 0px 0px 0px 0.2rem rgba(0,121,76,0.25);
}

.form-control {
    line-height: 1;
    border-radius: 0;
}
