/*
 * Globals
 */
:root{
    --golden: rgb(223, 192, 126);
    --dark-golden: rgb(180, 146, 70);
    --light-golden: rgb(250, 223, 164);
    --orange: rgb(179, 126, 12);
    --dark-orange: rgb(121, 85, 7);
    --light-orange: rgb(224, 162, 28);
    --red: rgb(189, 73, 73);
    --dark-red: rgb(133, 47, 47);
    --light-red: rgb(233, 114, 114);
    --blue: rgb(49, 113, 165);
    --dark-blue: rgb(33, 44, 105);
    --light-blue: rgb(106, 170, 230);
    --green: rgb(65, 187, 60);
    --dark-green: rgb(39, 117, 36);
    --light-green: rgb(94, 241, 89);
    --grey: rgb(128, 128, 128);
    --dark-grey: rgb(78, 78, 78);
    --light-grey: rgb(197, 197, 197);
}

@font-face {
    font-family: IMFellDWPic;
    src: url(IMFellDWPica-Regular.ttf);
}

@font-face {
    font-family: CreteRound;
    src: url(CreteRound-Regular.ttf);
}


@font-face {
    font-family: Amazon Ember;
    src: url(AmazonEmber_Rg.ttf);
}

/*
* Base structure
*/

html, body, #wrapper{ 
    width:100%;
    height: 100%;
}

#wrapper{
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  background-color: rgb(17, 12, 0);
}

hr{
    display: block;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 1px;
}

a{
    color:rgb(255, 255, 255);
    text-decoration: none;
}

a:link{
    color:rgb(255, 255, 255);
    text-decoration: none;
}

input[type=number]{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    margin: 0;
}

.cover-container{
  max-width: 80em;
}

.cover-container2{
  max-width: 100%;
}

.container{
    position: relative;
    border: 2px solid rgb(0, 0, 0);
    box-shadow: 0px 0px 0 1px rgb(0, 0, 0), 0px 0px 0 2px rgb(150, 88, 17), 0px 0px 0 3px rgb(0, 0, 0);
    padding: 2%;
}

.container:before{
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.07;
    background-image: url(https://www.nwtools.dev/images/hatch-texture.png);
    background-size: 206px 206px;
    background-position: 50% 0;
}

.background-texture{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translatex(-50%);
    max-width: 1920px;
    z-index: -1;
}

.background-texture--top{
    top: 0;
    background: url(https://www.nwtools.dev/images/bg-top.png) no-repeat top;
}

.background-texture--bottom{
    bottom: 0;
    background: url(https://www.nwtools.dev/images/bg-bottom.jpg) no-repeat bottom;
}

.footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

ul.no-bullets{
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
}

.vl{
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    width: 1px;
}

.info-bar { 
    position: fixed;
    top: 1em;
    right: 1em;
    width: auto;
}

.bg-hatch{
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
}

.noselect{
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently */
}

.logo-container{
    width: 100%;
}

.logo{
    width: 20%;
    height: auto;
}

.nav-link-heading{
    font-size: 1rem;
    letter-spacing: 0;
    text-indent: 0;
    text-transform: none;
    font-family: Amazon Ember, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: .8125rem;
    line-height: 1;
    letter-spacing: .24em;
    text-transform: uppercase;
    padding: 8px;
    margin: 0 4px 12px;
    text-decoration: none;
    background-image: url(https://www.nwtools.dev/images/hatch-texture.png);
}

.nav-link-heading.nav-disabled{
    cursor: default;
}

.nav-link-heading.nav-disabled:hover{
    cursor: default;
    background-image: none;
}

.nav-link-heading:hover{
    cursor: default;
}

.nav-link-heading.is-active:hover{
    cursor: default;
}

.nav-link-heading.is-active .nav-link-heading-label{
    background-color: #232220;
}

.nav-link-heading-label{
    padding: 8px;
    color: #fff1ce;
}

.nav-link-heading-label:hover{
    color: rgb(245, 197, 92);
    background-color: #232220;
    cursor: pointer;
}

.nav-link-heading-label.nav-disabled{
    color: #706b5d;
    cursor: default;
}

.nav-link-heading-label.nav-disabled:hover{
    background-color: transparent;
}

.radio-class input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
  }

.radio-class label {
    display: inline-block;
    background-color: rgb(33, 37, 41);
    padding: 10px 20px;
    font-family: sans-serif, Arial;
    font-size: 16px;
    border: 2px solid #444;
    border-radius: 4px;
}

.radio-class input[type="radio"]:checked + label{
    background-color:rgb(56,63,69);
    border:  2px dashed rgb(179, 126, 12);
}

.radio-class input[type="radio"]:focus + label {
    background-color:rgb(56,63,69);
    border: 2px dashed rgb(179, 126, 12);
}

.text-transparent{
    opacity: 0.4;
}

.server-name{
	font-family: "CreteRound", CreteRound, serif;
    font-size: 100%;
    color: rgb(245, 197, 92);
}

.text-styled{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
}

.text-crete{
    font-family: "CreteRound", CreteRound, serif;
}

.text-ember{
    font-family: "Amazon Ember", Amazon Ember, serif;
}

.text-golden{
    color: var(--golden);
}

.text-red{
    color: var(--red);
}

.text-orange{
    color: var(--orange);
}

.text-blue{
    color: var(--blue);
}

.text-grey{
    color: var(--grey);
}

.text-green{
    color: var(--green);
}


/* Button Text Colors */

.btn-golden{
    color: var(--golden);
}

.btn-golden:hover{
    color: var(--light-golden);
}

.btn-red{
    color: var(--red);
}

.btn-red:hover{
    color: var(--light-red);
}

.btn-orange{
    color: var(--orange);
}

.btn-orange:hover{
    color: var(--light-orange);
}

.btn-blue{
    color: var(--blue);
}

.btn-blue:hover{
    color: var(--light-blue);
}

.btn-grey{
    color: var(--grey);
}

.btn-grey:hover{
    color: var(--light-grey);
}

.btn-green{
    color: var(--green);
}

.btn-green:hover{
    color: var(--light-green);
}

.home-container{
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 5px;
    /*border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    background-color: rgba(54, 54, 54, 0.3);*/
}

.news-container{
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 5px;
}

.latest-watermarks-container{
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 5px;
}

.traders-container{
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 10px;
}

.item-types-container{
    width: 20em;
}

.trade-info-container{
    width: 50em;
}

.new-trade-container{
    width: 20em;
}

.army-container{
    display: flex;
    position: relative;
    width: 100%;
    padding: 10px;
}

.gearscore-container{
    display: inline-block;
    position: relative;
    width: 70%;
    padding: 5px;
    /*border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    background-color: rgba(54, 54, 54, 0.3);*/
}

.account-container{
    display: inline-block;
    position: relative;
    width: 70%;
    padding: 5px;
    /*border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    background-color: rgba(54, 54, 54, 0.3);*/
}

.server-status-container{
    display: inline-block;
    position: relative;
    width: 50%;
    padding: 5px;
}

.roster-container{
    display: inline-block;
    position: relative;
    width: 70%;
}

.standby-container{
    display: inline-block;
    position: relative;
    width: 5%;
}

.player-container{
    display: inline-block;
    width: 100%;
}

.weapons-container{
    display: inline-block;
    padding: 10px;
    width: 47%;
    /*width: 47%;*/
    /*width: 65%;*/
}

.armor-container{
    display: inline-block;
    padding: 10px;
    width: 15%;
}

.jewelry-container{
    display: inline-block;
    padding: 10px;
    width: 15%;
}

.info-container{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
}

.roster-title{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    text-align: left;
    float: left;
    font-size: 0.8vw;
}

.roster-label{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 0.5vw;
    text-align: right;
    float: right;
    color: rgb(219, 219, 219);
    cursor: pointer;
}

.army-card{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 4px;
    margin: 4px;
    background-color: rgba(54, 54, 54, 0.7);
    width: 100%;
}

.player-card{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 4px;
    margin: 4px;
    background-color: rgba(54, 54, 54, 0.7);
    width: 300px;
}

.player-card:focus{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 4px;
    margin: 4px;
    background-color: rgba(41, 41, 41, 0.7);
    width: 300px;
}

.add-player-container{
    margin-left: 10px;
    margin-right: 10px;
}

.btn-player-card{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 4px;
    margin: 4px;
    background-color: rgba(54, 54, 54, 0.7);
}

.btn-player-card:hover{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 4px;
    margin: 4px;
    background-color: rgba(41, 41, 41, 0.7);
}

.add-player-details {
    display: block;
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 4px;
    margin: 8px;
    background-color: rgba(41, 41, 41, 0.7);
}

.player-level{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
    width: 30px;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    padding: 6px;
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
}

.player-display{
    color: rgb(223, 192, 126);
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
}

.player-display:hover{
    color: rgb(197, 168, 105);
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
}

.player-display:focus{
    color: rgb(197, 168, 105);
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
}

.player-options{
    color: rgb(223, 192, 126);
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
}

.player-info-container{
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px;
    background-color: rgba(54, 54, 54, 0.7);
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
}

.player-add-container{
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px;
    margin-top: 5px;
    background-color: rgba(54, 54, 54, 0.7);
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
}

.player-help{
    cursor: pointer;
}

.player-info-bar{
    cursor: pointer;
}

.player-remove{
    cursor: pointer;
}

.class-none{
    color: rgb(202, 202, 202);
}

.class-tank{
    color: rgb(255, 119, 237);
}

.class-dps{
    color: rgb(255, 94, 94);
}

.class-healer{
    color: rgb(96, 226, 243);
}

.class-cc{
    color: rgb(47, 129, 30);
}

.class-siege{
    color: rgb(218, 156, 24);
}

.class-roamer{
    color: rgb(129, 30, 99);
}

.roster-block{
    display: inline-block;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(54, 54, 54, 0.7);
    margin: 10px;
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
}

.roster-1{
    color: rgb(216, 175, 128);
}

.roster-2{
    color: rgb(54, 228, 205);
}

.roster-3{
    color: rgb(197, 182, 164);
}

.roster-4{
    color: rgb(150, 17, 17);
}

.roster-5{
    color: rgb(156, 104, 43);
}

.roster-6{
    color: rgb(228, 220, 114);
}

.roster-7{
    color: rgb(55, 161, 194);
}

.roster-8{
    color: rgb(40, 248, 255);
}

.roster-9{
    color: rgb(255, 148, 27);
}

.roster-10{
    color: rgb(44, 209, 154);
}

.watermark-title{
    color: rgb(223, 192, 126);
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 36px;
}

.news-title{
    color: rgb(223, 192, 126);
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 18px;
}

.news-card{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 120ch;
}

#line{
    position: absolute;
    width: 1px;
    background-color: red;
}

.select-all{
    -webkit-user-select: all;
    -moz-user-select: all;
    -ms-user-select: all;
    user-select: all;
}

.refresh-averages{
    cursor: pointer;
}

.search-results{
    width: 100%;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(26, 26, 26, 0.7);
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
}

.search-item-title{
    color: rgb(223, 192, 126);
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(26, 26, 26, 0.7);
    width: 100%;
    height: 26px;
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
}

.search-item{
    color: rgb(223, 192, 126);
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    background-color: rgba(26, 26, 26, 0.7);
    font-size: 18px;
    width: 100%;
    height: 80px;
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
}

.news-button{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 4px;
    background-color: rgba(54, 54, 54, 0.7);
    height: 100%;
}

.news-button:hover{
    color: rgb(179, 126, 12);
    border: 1px solid rgba(126, 126, 126, 0.5);
}

.item-title{
    font-size: 100%;
}

.watermark-box{
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    background-color: rgba(26, 26, 26, 0.7);
    width: 80px;
    height: 60px;
    max-width: 80px;
    max-height: 60px;
    padding-top: 15%;
    -moz-box-shadow: inset 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 10px #000000;
    box-shadow: inset 0 0 10px #000000;
}

.item-box-view{
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(26, 26, 26, 0.7);
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
    -moz-box-shadow: inset 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 10px #000000;
    box-shadow: inset 0 0 10px #000000;
}

.item-box{
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(26, 26, 26, 0.7);
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
    -moz-box-shadow: inset 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 10px #000000;
    box-shadow: inset 0 0 10px #000000;
}

.item-box:hover{
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-box-shadow:0 0 20px rgb(223, 192, 126); 
    -moz-box-shadow: 0 0 20px rgb(223, 192, 126); 
    box-shadow:0 0 20px rgb(223, 192, 126);
}

.item-box-disabled{
    border: 1px solid rgba(252, 142, 142, 0.5);
    background-color: rgba(26, 26, 26, 0.7);
    width: 60px;
    height: 60px;
    max-width: 60px;
    max-height: 60px;
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
    -moz-box-shadow: inset 0 0 10px rgba(252, 142, 142, 0.5), 0 0 10px rgba(252, 142, 142, 0.5);
    -webkit-box-shadow: inset 0 0 10px rgba(252, 142, 142, 0.5), 0 0 10px rgba(252, 142, 142, 0.5);
    box-shadow: inset 0 0 10px rgba(252, 142, 142, 0.5), 0 0 10px rgba(252, 142, 142, 0.5);
}

.item-box-disabled:hover{
    border: 1px solid rgba(26, 26, 26, 0.3);
    -moz-box-shadow: inset 0 0 10px rgba(66, 66, 66, 0.5), 0 0 10px rgba(66, 66, 66, 0.5);
    -webkit-box-shadow: inset 0 0 10px rgba(66, 66, 66, 0.5), 0 0 10px rgba(66, 66, 66, 0.5);
    box-shadow: inset 0 0 10px rgba(66, 66, 66, 0.5), 0 0 10px rgba(66, 66, 66, 0.5);
}

.item-disabled{
    display: none;
    width: 58px;
    height: 58px;
    max-width: 58px;
    max-height: 0px;
    color: #FFFFFF;
    float: left;
    position: relative;
    top: -60px;
}

.item-disabled:hover{
    border: 1px solid rgba(26, 26, 26, 0.3);
    -moz-box-shadow: inset 0 0 10px rgba(66, 66, 66, 0.5), 0 0 10px rgba(66, 66, 66, 0.5);
    -webkit-box-shadow: inset 0 0 10px rgba(66, 66, 66, 0.5), 0 0 10px rgba(66, 66, 66, 0.5);
    box-shadow: inset 0 0 10px rgba(66, 66, 66, 0.5), 0 0 10px rgba(66, 66, 66, 0.5);
}

.new-item{
    -webkit-box-shadow:0 0 20px rgb(223, 192, 126); 
    -moz-box-shadow: 0 0 20px rgb(223, 192, 126); 
    box-shadow:0 0 20px rgb(223, 192, 126);
}

/*.new-item{
    float: left;
    position: relative;
    top: 61%;
    left: 46%;
}

.highest-item{
    float: right;
    position: absolute;
    display: flex;
}

.lowest-item{
    float: right;
    position: absolute;
    display: flex;
}*/

.item-button{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 4px;
    background-color: rgba(54, 54, 54, 0.7);
    height: 100%;
}

.item-gearscore{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 24px;
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 70px;
    margin: 0;
    appearance: textfield;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

.item-gearscore:focus{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 24px;
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    -webkit-box-shadow:0 0 10px rgb(219, 181, 100); 
    -moz-box-shadow: 0 0 10px rgb(219, 181, 100); 
    box-shadow:0 0 10px rgb(219, 181, 100);
}

.item-gearscore:hover{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 24px;
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 100%;
    -webkit-box-shadow:0 0 20px rgb(223, 192, 126); 
    -moz-box-shadow: 0 0 20px rgb(223, 192, 126); 
    box-shadow:0 0 20px rgb(223, 192, 126);
}

.item-gearscore:disabled{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 24px;
    color: rgba(197, 168, 105, 0.5);
    background-color: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(29, 29, 29, 0.7);
    height: 100%;
}

.item-gearscore:disabled:hover{
    border: 1px solid rgba(29, 29, 29, 0.5);
    -webkit-box-shadow:0 0 20px rgb(71, 71, 71); 
    -moz-box-shadow: 0 0 20px rgb(71, 71, 71); 
    box-shadow:0 0 20px rgb(71, 71, 71);
}

.input-field{
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
}

.input-field:focus{
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
}

.input-field:hover{
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
}

.input-field-18{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 18px;
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
}

.input-field-18:focus{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 18px;
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
}

.input-field-18:hover{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 18px;
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
}

.watermark-name{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 16px;
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
    max-width: 200px;
}

.watermark-name:focus{
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
}

.watermark-name:hover{
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
}

.invalid-email{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 18px;
    color: red;
}

.displayBadge{
    margin-top: 5%; 
    display: none; 
    text-align :center;
}

.bg-hatch{
    background-image: url(https://www.nwtools.dev/images/hatch-texture.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
}

.bg-hatch-light{
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
}

.btn-bordered{
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 4px;
    background-color: rgba(54, 54, 54, 0.7);
}

.btn-bordered:hover{
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 4px;
    background-color: rgba(54, 54, 54, 0.7);
}

.trade-type-label{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 20px;
    border: 1px solid rgba(20, 20, 20, 0.5);
    color: rgb(197, 168, 105);
    background-color: rgba(54, 54, 54, 0.7);
    padding: 2px;
    width: 300px;
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
    cursor: pointer;
}

.trade-type-label-sub{
	font-family: "IMFellDWPic", IMFellDWPic, serif;
    font-size: 16px;
    border: 1px solid rgba(20, 20, 20, 0.5);
    color: rgb(197, 168, 105);
    background-color: rgba(29, 29, 29, 0.7);
    padding: 2px;
    width: 280px;
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
    cursor: pointer;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(17, 17, 17, 0.7);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left .3s;
  padding: 16px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.modal-style{
    background-color: rgb(71, 71, 71);
    background-image: url(https://www.nwtools.dev/images/hatch-texture-lighter.png);
    background-size: 206px 206px;
    background-blend-mode: overlay;
}

.form-signin{
    width: 100%;
    max-width: 630px;
    padding: 15px;
    margin: auto;
}
  
.form-signin .checkbox{
    font-weight: 400;
}
  
.form-signin .form-floating:focus-within{
    z-index: 2;
}