﻿/* Set padding to keep content from hitting the edges */
/* Add by NicO 
    Overwrite Bootstrap
*/
.card {
    background-color: #D6C9FF !important; /*add #fff*/
    border: none;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    background-color: #8C489F !important; /*add #D6BAFF;*/
}

.top {
    background-color: #2a0b43;
    color: #fff;
}

.text-dark {
    color: #2a0b43 !important;
}

.btn-goback {
    color: #fff;
    background-color: #341851;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .btn-goback:hover {
        background-color: #946FBC;
    }

.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

a.bg-transfer:hover, a.bg-transfer:focus,
button.bg-transfer:hover,
button.bg-transfer:focus {
    background-color: #24d2ee !important;
}
/*Overwrite primary background colour*/
.bg-primary {
    background-color: #341851 !important;
}
/*Banner*/
.rolling-banner {
    width: 99%;
    overflow: hidden;
    background-color: #8C489F !important;
    height: 40px;
    position: relative;
    margin-top: 1px;
}

.banner-content {
    position: absolute;
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
    font-size: 18px;
    padding: 5px;
    color: #D6C9FF !important;
    font-weight: bold;
}

@keyframes scroll-left {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}
