* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    font-family: montserrat;
    font-size: 20px;
    text-align: justify;
    text-justify: inter-word;
}

nav {
    /* background: #0082e6; */
    background: #000000;
    height: 80px;
    width: 100%;
}

label.logo {
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 50px 20px 0 40px; /* top right bottom left */
    font-weight: bold;
    max-height: 60px;
    margin-top: 20px;
}

nav ul {
    float: right;
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a {
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}

a.active,
a:hover {
    background: #1b9bff;
    transition: .5s;
}

.checkbtn {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

@media (max-width: 700px) {
    label.logo {
        font-size: 30px;
        padding-left: 50px;
        margin: 40px 0 0 0; /* top right bottom left */
    }

    nav ul li a {
        font-size: 16px;
    }
}

@media (max-width: 858px) {
    .checkbtn {
        display: block;
    }

    ul {
        position: fixed;
        width: 100%;
        height: 100vh;
        background: #2c3e50;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
        line-height: 30px;
    }

    nav ul li a {
        font-size: 20px;
    }

    a:hover,
    a.active {
        background: none;
        color: #0082e6;
    }

    #check:checked~ul {
        left: 0;
    }
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    z-index: 1;
  }
  .dropdown-content a {
    color: black;
    /*padding: 12px 16px;*/
    padding: 0px 16px;
    text-decoration: none;
    display: block;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  .show {
    display: block;
  }

iframe {
        margin: 0 auto;
        display: block;
      }
      
.field-container {
  display: inline-block;
}

.label {
  color: white;
  padding: 8px;
  font-family: Arial;
}

/* section{
    background: url(bg1.jpg) no-repeat;
    background-size: cover;
    height: calc(100vh - 80px);
  } */

/* CSS ======================== XUMM =============================== */
.button-XUMM {
    appearance: none;
    backface-visibility: hidden;
    background-color: #3052FF;
    border-radius: 10px;
    border-style: none;
    box-shadow: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 18px;
    letter-spacing: normal;
    line-height: 1.5;
    outline: none;
    overflow: hidden;
    padding: 0px 0px 0px 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button-XUMM:hover {
    background-color: #3BDC96;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
    opacity: 1;
    transform: translateY(0);
    transition-duration: .35s;
}

.button-XUMM:hover:after {
    opacity: .5;
}

.button-XUMM:active {
    box-shadow: rgba(0, 0, 0, .1) 0 3px 6px 0, rgba(0, 0, 0, .1) 0 0 10px 0, rgba(0, 0, 0, .1) 0 1px 4px -1px;
    transform: translateY(2px);
    transition-duration: .35s;
}

.button-XUMM:active:after {
    opacity: 1;
}

@media (min-width: 768px) {
    .button-XUMM {
        padding: 0px 0px 0px 0px;
        width: 140px;
    }
}
/*  ======================== FOCUS BLUR TEXT ENTRY =============================== */
#buyerNameField {
    border: none;
    background: none;
    outline: none;
    display: inline-block;
    font-size: 16px;
    /*font-family: "Times New Roman", Times, serif;*/
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: black;
    width: auto;
    min-width: 60px;  /* Minimum width to handle very short or empty inputs */
}

#buyerNameField[readonly] {
    cursor: pointer;
    border: none;
}

#buyerNameField:focus {
    background: white;
    border-bottom: 1px solid gray;
}
/* CSS ======================== save =============================== */
.button-save {
    appearance: none;
    backface-visibility: hidden;
    background-color: #3052FF;
    border-radius: 10px;
    border-style: none;
    box-shadow: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 18px;
    letter-spacing: normal;
    line-height: 1.5;
    outline: none;
    overflow: hidden;
    padding: 0px 0px 0px 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button-save:hover {
    background-color: #3BDC96;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
    opacity: 1;
    transform: translateY(0);
    transition-duration: .35s;
}

.button-save:hover:after {
    opacity: .5;
}

.button-save:active {
    box-shadow: rgba(0, 0, 0, .1) 0 3px 6px 0, rgba(0, 0, 0, .1) 0 0 10px 0, rgba(0, 0, 0, .1) 0 1px 4px -1px;
    transform: translateY(2px);
    transition-duration: .35s;
}

.button-save:active:after {
    opacity: 1;
}

@media (min-width: 768px) {
    .button-save {
        /*padding: 14px 22px;*/
        padding: 0px 0px 0px 0px;
        /*width: 176px;*/
        width: 50px;
    }
}
/* CSS ======================== long =============================== */
.button-long {
    appearance: none;
    backface-visibility: hidden;
    background-color: #3052FF;
    border-radius: 10px;
    border-style: none;
    box-shadow: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 18px;
    letter-spacing: normal;
    line-height: 1.5;
    outline: none;
    overflow: hidden;
    padding: 0px 0px 0px 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button-long:hover {
    background-color: #3BDC96;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
    opacity: 1;
    transform: translateY(0);
    transition-duration: .35s;
}

.button-long:hover:after {
    opacity: .5;
}

.button-long:active {
    box-shadow: rgba(0, 0, 0, .1) 0 3px 6px 0, rgba(0, 0, 0, .1) 0 0 10px 0, rgba(0, 0, 0, .1) 0 1px 4px -1px;
    transform: translateY(2px);
    transition-duration: .35s;
}

.button-long:active:after {
    opacity: 1;
}

@media (min-width: 768px) {
    .button-long {
        /*padding: 14px 22px;*/
        padding: 0px 0px 0px 0px;
        /*width: 176px;*/
        width: 250px;
    }
}
/* CSS ======================== edit =============================== */
.button-edit {
    appearance: none;
    backface-visibility: hidden;
    background-color: #6B8E23;
    border-radius: 10px;
    border-style: none;
    box-shadow: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 18px;
    letter-spacing: normal;
    line-height: 1.5;
    outline: none;
    overflow: hidden;
    padding: 0px 0px 10px 0px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button-edit:hover {
    background-color: #3BDC96;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
    opacity: 1;
    transform: translateY(0);
    transition-duration: .35s;
}

.button-edit:hover:after {
    opacity: .5;
}

.button-edit:active {
    box-shadow: rgba(0, 0, 0, .1) 0 3px 6px 0, rgba(0, 0, 0, .1) 0 0 10px 0, rgba(0, 0, 0, .1) 0 1px 4px -1px;
    transform: translateY(2px);
    transition-duration: .35s;
}

.button-edit:active:after {
    opacity: 1;
}

@media (min-width: 768px) {
    .button-edit {
        /*padding: 14px 22px;*/
        padding: 0 0 10px 0;
        /*width: 176px;*/
        width: 50px;
    }
}
/* CSS ======================== .button-remove =============================== */
.button-remove {
    appearance: none;
    backface-visibility: hidden;
    background-color: #6B8E23;
    border-radius: 10px;
    border-style: none;
    box-shadow: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    height: 18px;
    letter-spacing: normal;
    line-height: 1.5;
    outline: none;
    overflow: hidden;
    padding: 0px 0px 0px 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button-remove:hover {
    background-color: #3BDC96;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
    opacity: 1;
    transform: translateY(0);
    transition-duration: .35s;
}

.button-remove:hover:after {
    opacity: .5;
}

.button-remove:active {
    box-shadow: rgba(0, 0, 0, .1) 0 3px 6px 0, rgba(0, 0, 0, .1) 0 0 10px 0, rgba(0, 0, 0, .1) 0 1px 4px -1px;
    transform: translateY(2px);
    transition-duration: .35s;
}

.button-remove:active:after {
    opacity: 1;
}

@media (min-width: 768px) {
    .button-remove {
        /*padding: 14px 22px;*/
        padding: 0px 0px 0px 0px;
        /*width: 176px;*/
        width: 600px;
    }
}