/* CUSTOM CSS FORM */

p, input, label, select,
.__stk-form-control, #incoterms-detail {
    font-family: "Prompt", serif !important;
}

.__stk-title p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4em;
    color: #444444;
}

/* GENERAL */

.hide {
    display: none;
}

#stk-form button,
#stk-form select {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

#stk-form select {
    word-wrap: normal;
}

#stk-form select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}

#stk-form select.form-control[size], #stk-form select.form-control[multiple] {
    height: auto;
}

#stk-form label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

#stk-form button,
#stk-form [type="button"],
#stk-form [type="reset"],
#stk-form [type="submit"] {
    -webkit-appearance: button;
}

#stk-form button:not(:disabled),
#stk-form [type="button"]:not(:disabled),
#stk-form [type="reset"]:not(:disabled),
#stk-form [type="submit"]:not(:disabled) {
    cursor: pointer;
}

#stk-form button::-moz-focus-inner,
#stk-form [type="button"]::-moz-focus-inner,
#stk-form [type="reset"]::-moz-focus-inner,
#stk-form [type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

/* CONTAINER, ROW & COLUMNS */

.__stk-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 4%;
}

.__stk-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.__stk-col-md-3, .__stk-col-md-4,
.__stk-col-md-6, .__stk-col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* FORM */

.__stk-form-group {
    margin-bottom: 1rem;
}

.__stk-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* H1 TITLE */

.__stk-title h1 {
    color: #1C3475;
    font-family: "Merriweather", serif !important;
    font-weight: bold;
    line-height: 1;
}

/* BUTTON */

.__stk-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.__stk-btn:hover {
    color: #212529;
    text-decoration: none;
}

.__stk-btn:focus, .__stk-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.__stk-btn.disabled, .__stk-btn:disabled {
    opacity: 0.65;
}

.__stk-btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

a.__stk-btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

.__stk-btn-primary {
    color: #fff;
    background-color: transparent;
    background-image: linear-gradient(260deg, #00D87B 0%, #1C3475 100%);
    border-radius: 50px 50px 50px 50px;
    border: 2px solid #fff;
    letter-spacing: 5px;
}

.__stk-btn-primary:hover {
    color: #fff;
    border-color: #fff;
}

.__stk-btn-primary:focus, .__stk-btn-primary.focus {
    color: #fff;
    border-color: #fff;
    /* box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); */
}

.__stk-btn-primary.disabled, .__stk-btn-primary:disabled {
    color: #fff;
    border-color: #fff;
}

.__stk-btn-primary:not(:disabled):not(.disabled):active,
.__stk-btn-primary:not(:disabled):not(.disabled).active,
.show > .__stk-btn-primary.dropdown-toggle {
    color: #fff;
    border-color: #fff;
}

.__stk-btn-primary:not(:disabled):not(.disabled):active:focus,
.__stk-btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .__stk-btn-primary.dropdown-toggle:focus {
    /* box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); */
}

.__stk-btn-lg, .__stk-btn-group-lg > .__stk-btn {
    padding: 0.5rem 2rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

/* SPINNER */

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}

.__stk-text-primary {
    color: #007bff !important;
}

/* PADDING */

.__stk-p-1 {
    padding: 0.25rem !important;
}

.__stk-p-2 {
    padding: .5rem!important;
}

.__stk-p-3 {
    padding: 1rem!important;
}

.__stk-p-4 {
    padding: 1.5rem !important;
}

.__stk-p-5 {
    padding: 3rem !important;
}

/* MARGIN */

.__stk-mt-3 {
    margin-top: 1rem!important;
}

.__stk-mb-3 {
    margin-bottom: 1rem!important;
}

/* TEXT ALIGN */

.__stk-text-left {
    text-align: left !important;
}

.__stk-text-right {
    text-align: right !important;
}

.__stk-text-center {
    text-align: center !important;
}

/* BORDER */

.__stk-border {
    border: 1px solid #dee2e6!important;
}

/* OPACITY */

.__stk-opacity {
    opacity: 0.5;
}

.__stk-fade {
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .__stk-fade {
        transition: none;
    }
}

.__stk-fade:not(.show) {
    opacity: 0;
}

/* FORM CUSTOM */

#stk-form {
    background: #1C3475;
    border-radius: 25px;
}

#stk-form label {
    color: #ffffff;
}

.__stk-row.__stk-first {
    padding-top: 50px;
}

.__stk-row.__stk-button {
    padding-bottom: 50px;
}

/* FORM RESULT */

.__stk-line {
    border-top: 1px solid #222222;
}

.__stk-m50 {
    margin: 50px 0;
}

.__stk-mb30 {
    margin-bottom: 30px;
}

.__stk-result {
    background: #f0f0f0;
    border-radius: 25px;
    padding: 50px;
}

.__stk-term-title h3 {
    color: #1C3475;
}

/* MEDIA QUERY */

@media (max-width: 768px) {
    .__stk-row {
        padding: 10px 0;
        margin-right: 0;
        margin-left: 0;
    }

    .__stk-title p {
        font-size: 18px !important;
    }
}

@media (min-width: 768px) {

    .__stk-row {
        padding: 10px 12%;
        margin-right: 0;
        margin-left: 0;
    }

    .__stk-col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .__stk-col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .__stk-col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .__stk-col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .__stk-col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1399px) {
    .__stk-container {
        width: 1400px;
    }
}