.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0.5rem;
    margin-top: 16px;
}

img {
    max-width: 72px;
    height: auto;
    float: right;
    order: 1;
}

.header-text {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}

.content{
    padding: 24px;
    border-radius: 10px;
    background-color: #eee;
    border-color: #ddd;
    margin-top: 16px;
}

.content.device{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: lighter;
}

.content h2{
    margin-top: 0;
    font-size: 16px;
}

.content.error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.content.success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.spacing {
    padding-top: 12px;
}

.displayDiv {
    font-size: 18px;
    text-align: center;
}

.display {
    background-color: #FFFFFF;
    font-weight: 400;
    border-radius: 25px;
    padding: 4px;
    padding-right: 12px;
    padding-left: 12px;
    word-wrap: break-word;
    letter-spacing: .5px;
}

.display.code {
    font-family: CourierPrimeCode;
    font-size: 30px;
    letter-spacing: 5px;
}

.label {
    padding-bottom: 20px;
}

.banner {
    font-family: sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.banner.box {   
    color: #a94442;   
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 10px;
    border-radius: 10px;
} 

.banner.text {
    text-decoration: underline;
    margin: 10px;
}

#tooltip {
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    text-align: center;   
    color: #a94442;   
    background-color: #f2dede;
    border-color: #ebccd1;
    padding: 10px;
    border-radius: 10px; 
    visibility: hidden;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.warningWrapper {
    color: black;
    font-size: 15px;
    margin: 10px;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items:center;
    justify-content: center;
}

.double-down-arrow {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px
}

.double-down-arrow::after,
.double-down-arrow::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    left: 7px;
    top: 3px
}

.double-down-arrow::after {
    top: 8px
}

.line {
    position:relative;
    text-align: center; 
    border-bottom: 1px solid gray; 
    line-height: 1px;
    margin: 10px 0 20px; 
}

.line span {
    font-size: 10px;
    font-weight: 400;
    background:#eee; 
    padding: 5px; 
}

.warningInfo {
    opacity: 75%;
    font-size: 12px;
}
.confirmInfo {
    font-size:18px;
}

body {
    position: relative;
    border-collapse: initial;
    border-spacing: 0;
    margin: 50px auto 16px;
    font-family: 'Amazon Ember';
    max-width: 800px;
    padding: 0 5%;
    text-decoration: none;
}

.aea-btn { 
    background-color: #0064D9;
    color: #ffffff;
    position: relative;
    margin-left: 5%;
    height: fit-content;
    padding: 0.7rem;    
    width: 90%;
    font-size: 16px;
    font-weight:bolder;
    border: 1px solid gray;
} 

.progressbar-container {
    color: #5f6b7a;
}

.progressbar-description {
    min-block-size: 0;
    word-break: break-word;    
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    block-size: 20px;
}


.progress {
    inline-size: 100%;
    block-size: 4px;
    background-color: #e9ebed;
    border-start-start-radius: 10px;
    border-start-end-radius: 10px;
    border-end-start-radius: 10px;
    border-end-end-radius: 10px;
    margin-inline-end: 12px;
}

progress::-webkit-progress-bar {
    background-color: #e9ebed;
}

progress::-webkit-progress-value {
    background-color: #0972d3;
}

progress::-moz-progress-bar {
    background-color: #0972d3;
}

.progress-percentage-container {
    inline-size: 33px;
    flex-shrink: 0;
    white-space: nowrap;
    text-align: end;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: .005em;
}

.progress-percentage-text {
    font-weight: 400;
}

.activation-container {
    font-family: "Amazon Ember";
}

.text{
    font-size: 16px;
    line-height: 24px;
    margin-top: 15px;
}

.required:after{
    content:" *";
    color: #BB1805;
}

.activation-textbox-container-wrapper{
    padding-top: 16px;
}

.activation-textbox-container {
    padding: 4px 12px;
    border-inline: solid;
    border-block: solid;
    border-width: 2px;
    border-radius: 5px;
    color:  #898989;
    border-color:  #898989;
}

.activation-textbox {
    width: 100%;
    border-width: 0px;
    box-shadow: 0;
    outline: none;
}

.activation-textbox:focus {
    border-color: white;
}

.button-container {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 16px;
    gap: 8px;
}

.flex-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 450px;
}

.button-container button{
    font-size: 16px;
    text-decoration: none;
    padding: 8px 28px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: .25px;
}

.primary-button {
    color: #16191f;
    background: #f90;
    border: 0px none;
}

.primary-button:hover {
    color: #16191f;
    background: #ec7211;
}

.primary-button:active {
    color: #000716;
    background: #eb5f07;
}

.secondary-button {
    color: #0972d3;
    background: white;
    border: 2px solid #0972d3;
}

.secondary-button:hover {
    color: #033160;
    background: #f2f8fd;
    border-color: #033160;
}

.secondary-button:active {
    color: #033160;
    background: #d3e7f9;
    border-color: #033160;
}

input {
    border: 1px solid black;
}

.bold {
    font-weight: 700;
}

.fade-small {
    font-size: 12px;
}

.bold-smaller {
    font-weight: 700;
    font-size: 8px;
}

.hidden {
    display: none;
}

svg {
    fill: none;
    pointer-events: none;
}

.stroke-linejoin-round {
    stroke-linejoin: round;
}

.alert-container-wrapper {
    padding: 12px 16px;
    border-width: thin;
    border-block: solid;
    border-inline: solid;
    border-radius: 12px;
    border-width: 2px;
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
}

.alert-warning {
    stroke: #8d6605;
    border-color: #8d6605;
    background-color: #fffce9;
}

.alert-error {
    stroke: #D91515;
    border-color: #D91515;
    background-color: #FFF7F7;
}

.alert-info-invert {
    stroke: #fbfbfb;
    border-color: #fbfbfb;
    background-color: #0972d3;
}

.alert-success {
    stroke: #037f0c;
    border-color: #037f0c;
    background-color: #f2fcf3;

}

.alert-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.text-container {
    margin: 4;
    padding: 2px 0px;
    width: 100%;
}

.text-container .invert {
    color: white;
}

.card-container {
    padding: 12px 16px;
    border-width: thin;
    border-block: solid;
    border-inline: solid;
    border-radius: 12px;
    border-width: 1px;
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
    border-color: #c9beb6;
}

.alert-icon {
    width: 16px;
    height: 16px;
    margin: 4px 4px 4px 0px;
    padding: 2px 0px;
    stroke-width: 2px;
    min-width: 16px;
}

.bold {
    font-weight: 700;
}

.alert-dismiss-button-wrapper{
    margin-left: 16px;
}

.alert-dismiss-button {
    background: none;
	stroke: #d1d5db;
	border: 2px;
	padding: 4px;
	font: inherit;
	cursor: pointer;
	outline: inherit;
    min-width: 20px;
    width: 24px;
    stroke-width: 2px;
}

.alert-dismiss-button:hover {
    stroke: #fbfbfb;
}

a, a:visited {
    text-underline-offset: .25em;
    text-decoration-thickness: 1px;
    color: #0972d3;
}

a:hover, a:active {
    color: #033160;
}

@media only screen and (max-width: 700px)
{
    .header-text {
        float: left;
        text-align: center;
        font-size: 24px;
        line-height: 28px;
    }
    img {
        display: none;
    }
}

@media only screen and (max-width: 400px)
{
    .header-text {
        font-size: 20px;
        line-height: 24px;
    }
}


@font-face {
    font-family: "Amazon Ember";
    src: url("./fonts/amazon-ember/amazonember_rg_v2.ttf") format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: "Amazon Ember";
    src: url("./fonts/amazon-ember/amazonember_bd_v2.ttf") format('truetype');
    font-weight: 700;
}

@font-face {
  font-family: "CourierPrimeCode";
  src: url("./fonts/CourierPrimeCode.ttf") format('truetype');
}

@font-face {
    font-family: "Open Sans";
    src: url("./fonts/OpenSans.ttf") format('truetype');
}

#confirmationWarning {
  font-size: 18px;
  color:#a94442;
}