/*form-send*/

#form-send {
    width: 100%;
    margin: 0 auto;
    max-width: 800px;
}

#form-send .question-group {
    width: 100%;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    /*align-items: center;*/
    text-align: left;
}

#form-send h3 {
    line-height: 1.25;
    font-size: 1rem;
}

#form-send .question-group label {
    width: 90%;
    text-align: left;
    padding-bottom: 10px;
}

@media screen and (max-width: 960px) {
    #form-send .question-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #form-send .question-group label {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
}

#form-send label.multiple-inline {
    width: 100%;
    text-align: left;
    padding-right: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1.5rem;
    display: block;
    border-top: #333 1px dashed;
    padding-top: 20px;
}

#form-send input[type="text"],
#form-send input[type="email"],
#form-send input[type="file"],
#form-send select {
    border: #666 1px solid;
    background: transparent;
   
    width: 100%;
    padding: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

#form-send input[type="file"] {
    cursor: pointer;
}

#form-send input[type="checkbox"] {
    margin-right: 15px;
}

#form-send input[type="checkbox"]:before {
    width: 18px;
    height: 20px;
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 10px;
    /*
  background: url(https://asset.msi.com/event/mb/2018/MSI_B450_Promote/images/bg-check.png) top left no-repeat ;*/
    background-size: cover;
}

#form-send input[type="checkbox"]:checked:before {
    /*
  background: url(https://asset.msi.com/event/mb/2018/MSI_B450_Promote/images/bg-checked.png) top left no-repeat ;*/
    background-size: cover;
}

#form-send a.btn-terms {
    float: left;
    color: #f00;
    margin-top: 10px;
}

#form-send a.btn-terms:after {
    padding-left: 10px;
    content: "view T&C";
    color: #fff;
}

#form-send a.btn-terms:hover,
#form-send a.btn-terms:active {
    color: #f00;
}

#form-send .btn-submit {
    border: #f00 1px solid;
    background: none;
    color: #f00;
    text-transform: uppercase;
    padding: 15px 35px;
    margin: 0 5px;
    font-size: 1.2rem;
    cursor: pointer;
    -webkit-transition: 0.5s all ease-in 0.1s;
    -o-transition: 0.5s all ease-in 0.1s;
    transition: 0.5s all ease-in 0.1s;
    width: calc(100% - 2px);
}

#form-send .btn-submit:hover {
    background: #f00;
    color: #fff;
}

@media screen and (max-width: 960px) {
    #form-send input[type="file"] {
        margin-bottom: 5px;
    }
}


/*.modal*/

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background: $col2;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 15px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    border: $col2 5px solid;
    border-top: $col 5px solid;
    text-align: left;
    font-family: $body-ft;
    font-size: $body-ftsize;
    color: $body-ftcolor;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2%;
    line-height: 1.5rem;
    a {
        color: $col;
        &:hover {
            border-bottom: $col 1px dashed;
        }
    }
}

.modal-header {
    border-bottom: none;
    color: $col;
    font-family: $ft2;
}

.modal-line {
    border-bottom: #c00 1px solid !important;
}

.modal-title {
    font-size: 2rem;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    border-bottom: $col 2px solid;
}

.modal-body {
    hr {
        display: none;
    }
    p {
        padding-bottom: 20px;
    }
    ul,
    ol {
        margin-left: 20px;
        padding-bottom: 20px;
    }
    h4 {
        color: $col;
        font-family: $ft2;
        text-transform: uppercase;
        font-size: 1.5rem;
        padding: 10px 0;
    }
}

.modal-footer {
    border-top: #333 1px solid;
    button {
        border: $col 1px solid;
        background: none;
        color: $col;
        text-transform: uppercase;
        padding: 5px 15px;
        margin: 0 5px;
        cursor: pointer;
        transition: $transition;
        &:hover {
            background: $col;
            border: $col 1px solid;
            color: #fff;
        }
    }
}

.close {
    background: $col !important;
    position: absolute;
    width: 30px;
    height: 30px;
    @include radius(30px);
    right: 15px;
    z-index: 10;
    top: 15px;
    display: inline-block !important;
    text-align: center;
    border: none;
    opacity: 1;
    color: #fff;
    border: $col 2px solid;
}

.close:focus,
.close:hover {
    color: $col;
    opacity: 1;
    text-decoration: none;
    cursor: pointer;
    background: none !important;
    box-shadow: none;
    border: $col 2px solid;
    text-shadow: none;
}

button.close {
    -webkit-appearance: none;
    cursor: pointer;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
    padding: 0 15px;
}