body {
    margin: 0px;
    font-family: roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

.header {
    /*width: 100%;
    width: 1000px;*/
    height: 300px;
    background-color: #0b2d5d;
    background-image: url('background.jpg');
    margin: auto;
}

.navbar-brand {
    display: inline-block;
    padding-top: 30px;
    /*padding-bottom: .3125rem;*/
    margin-left: 150px;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

.inbenta-helpsite__header__container {
    color: white;
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: .5rem;
    font-family: -apple-system, blinkmacsystemfont, roboto, sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

.sunshine-button-container {
    width: 1000px;
    margin: auto;
    text-align: center;
    /*padding-top: 40px;*/
}

.inputs-integration {
    font-size: 16px;
    padding: 12px;
    width: 400px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.button-continue {
    font-size: 15px;
    background-color: #0b2d5d;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #777;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #777 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.info {
    background-color: #e7f3fe;
    border-left: 6px solid #2196F3;
    padding: 3px;
    font-style: italic;
}

.success {
    color: #090;
    padding-top: 16px;
}

.error {
    color: #C00;
    padding-top: 16px;
}

.sub-header {
    background-color: #f1f5ff;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer {
    color: #fff;
    background-color: #0c152e;
    height: 60px;
    padding-top: 40px;
    padding-left: 20px;
    position: fixed;
    bottom: 0px;
    width: 100%;
}

.code-container {
    word-wrap: break-word;
    padding: 20px;
    margin-top: 30px;
}

#code {
    font-size: 20px;
}

.btn_copy {
    cursor: pointer;
    color: #727272;
    font-size: 20px;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}