.container {
    max-width: 1200px !important;
}

/* Let's get this party started */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #ad1709;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #ad1709;
}

input:focus,
button:focus,
textarea:focus,
img:focus,
div:focus {
    outline: none !important;
    box-shadow: none !important;
}

a:hover {
    text-decoration: none;
}

button.btn-secondary,
a.btn-secondary {
    background-color: #aba594;
    border-color: #aba594;
    border-radius: 20px;
    font-weight: 600;
}

button.btn-danger,
a.btn-danger {
    background-color: #aba594;
    border-color: #aba594;
    border-radius: 20px;
    font-weight: 600;
}

button.btn-danger:hover,
a.btn-danger:hover {
    background-color: #a00300;
    border-color: #a00300;
}

img,
iframe {
     border-radius: 5px;
}