@charset "utf-8";
/* CSS Document */


/* Ensures that padding stays within the box's total width and height */ 
* {
  box-sizing: border-box;
}

/* Controlls the background colour etc of the entire page */
body {
  margin: 0px;
  background-color: rgba(241,241,241,1.00);
}

header {
  position: fixed;
  width: 100vw;
  height: 100px;
  top: 0px;
  left: 0px;
  z-index: 1;
  background-color: black;
  color: white;
  font-size: 40px;
  border-bottom: 3px solid white;
  text-align: center;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  padding-top: 45px;
}

#headerDomainID {
  text-decoration: none;
  background-color: white;
  color: #3377cc;
  border-radius: 10px;
  padding: 0 10px 0 10px;
  font-weight: bold;
}

#footerDomainID {
  display: inline-block;
}

/* not being used - if added, need to have min of margin-left:200px for all center divs so it stretches properly on resize */
.leftAdds {
  display: none;
  border-right: 1px solid #ccc;
  width: 200px;
  position: fixed;
  left: 0;
  top: 100px;
  height: 100vh;
}

.contentDiv {
  margin: 100px 0 0 0;
}

.purchaseFormDiv {
  display: block;
  width: 1140px;
  margin: auto;
  margin-bottom: 40px;
  border-radius: 10px;
}

.contactFormDiv {
  display: none;
  width: 1140px;
  margin: auto;
  margin-bottom: 40px;
  border-radius: 10px;
}

.introVid {
  background-color: black;
  width: 50vw; /* this is the maximum percentage the div will fill on a page */
  height: 50vh; /* this is the maximum height of the div, which is 60% of the viewport height. It does not make images or videos stretch */
  margin: auto; /* this centers the content container in the middle of the page */
  display: flex; 
  justify-content: center; /* This, along with "display:flex" above makes the image stretch the entire height of the div, then below "align-self:flex-end" fixes that so doesnt stretch and aligns to bottom */
  align-self:flex-end;
  padding: 0;
  margin-top: 140px;
  margin-bottom: 50px;
}

.videosClass {
  width: 100%; /* this makes the controls the entire width of the introVid div */
}

.howToContainer {
  display: block;
  width: 1140px;
  margin: auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 40px;
  background-color: white;
}

.paymentContainer {
  display: block;
  width: 600px;
  margin: auto;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: white;
  border: 1px solid #ccc;
}

.formContainer {
  display: block;
  width: 600px;
  margin: auto;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: white;
  border: 1px solid #ccc;
}

textarea {
  resize: none;
  width: 100%;
  max-width: 600px;
  height: 150px;
  margin-top: 15px;
}

.howToText {
  text-align: center;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-weight: bold;
  font-size: 30px;
  color: #3377cc;
}

.domainName {
  text-align: center;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-weight: bold;
  font-size: 30px;     
}

#bitcoinRequiredID {
  display: inline-block;
  font-weight: bold;
}

#bitcoinRequiredConfirmationID {
  display: inline-block;
  font-weight: bold;
}



.stepsContainer {
  display: block;
}

.stepsText {
  display: block;
  color: #3377cc;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-weight: bold;
  font-size: 25px;
  margin: 30px 0px 20px 0px;
}

.stepsValue {
  display: inline-block;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-size: 18px;
}

.purchaseContactContainer {
  display: block;
  margin-bottom: 30px;
}

.buttonsCenteringContainer {
  display: block;
  width: 230px;
  margin: auto;
}

.purchaseButton {
  display: inline-block;
  margin: auto;
  border: 1px solid #3377cc;
  border-radius: 3px;
  background-color: #3377cc;
  color: white;
  padding: 5px;
  width: 100px;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

.purchaseButton:hover {
  background-color: #005ed1;
  cursor: pointer;
}

.contactButton {
  display: inline-block;
  margin: auto;
  border: 1px solid #3377cc;
  border-radius: 3px;
  background-color: white;
  color: black;
  padding: 5px;
  width: 100px;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

.contactButton:hover {
  cursor: pointer;
}

.walletAddress {
  margin: 20px 0px 30px 20px;
  font-weight: bold;
  font-size: 20px;
}

.infoImg {
  display: inline-block;
  vertical-align: middle; /* align inline div - makes two inline-block's line up correctly */
  margin-left: 40px;
}

.learnBitcoin {
  display: inline-block;
  vertical-align: middle; /* align inline div - makes two inline-block's line up correctly */
  margin-left: 10px;
}

.learnBitcoinWhite {
  display: inline-block;
  vertical-align: middle; /* align inline div - makes two inline-block's line up correctly */
  margin-left: 10px;
}

.learnBitcoinWhite a {
  color: #ccc;
}

.hiddenValue {
  display: none;
}

.paymentText {
  text-align: center;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-weight: bold;
  font-size: 30px;
  color: #3377cc;
  margin: 30px 0px;
  padding-top: 20px;
}

.formText {
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-weight: bold;
  margin-left: 20px;
  margin-right: 20px;
  display: block;
  margin-bottom: 15px;
}

.optionsValue  {
  display: block;
  margin-right: 20px;
  text-align: left;
  margin-left: 20px;
  margin-bottom: 20px;
}

.optionsValue input {
  width: 100%;
  border: 1px solid grey;
  border-radius: 3px;
  padding: 3px 0px 3px 5px;
}

.checkboxValue {
  display: inline-block;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.checkboxText {
  display: inline-block;
}

.checkboxContainer {
  margin: 0 20px 0 20px;
}


.submitFormButton {
  display: block;
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#submitFormButtonID {
  background: none;
  border: 1px solid #3377cc;
  border-radius: 3px;
  width: 120px;
  height: 30px;
  background-color: #3377cc;
  color: white;
  font-size: 14px;
  font-weight: bold;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  line-height: 27px;    
}

#submitFormButtonID:hover {
  background-color: black;
  color: #33ff00;
  cursor: pointer;
}


#submitContactID {
  background: none;
  border: 1px solid #3377cc;
  border-radius: 3px;
  width: 120px;
  height: 30px;
  background-color: #3377cc;
  color: white;
  font-size: 14px;
  font-weight: bold;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  line-height: 27px;    
}

#submitContactID:hover {
  background-color: black;
  color: #33ff00;
  cursor: pointer;
}

.otherDomainsContainer {
  display: block;  
  width: 1140px;
  height: 600px;
  margin: auto;
  margin-bottom: 50px;  
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: white;
}

.domainsList {
  display: block;
  margin: auto; /* centers the div - must specify width */
  width: 1100px;
  text-align: center;
}

ul.domainsList {
  list-style-type: none;
}

ul.domainsList li {
  margin: 10px 10px 10px 0px;;
  
}

ul.domainsList li a {
  text-decoration: none; /* removes "a href" underline from text */
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-size: 20px;
  font-weight: bold;
  color: rgba(120, 120, 120, 1); /* changes the "a href" blue text */
}

ul.domainsList li a:hover {
  color:black;
  font-weight: bold;
}

/* not being used - if added, need to have min of margin-right:200px for contentDiv so it stetches properly on resize */
.rightAdds {
  display: none;
  border-left: 1px solid #ccc;
  width: 200px;
  position: fixed;
  right: 0;
  top: 100px;
  height: 100vh;
}

footer {
  display: block;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%; /* must specify width if you want it fixed AND CENTERED */
  text-align: center;
  background-color: rgba(69, 69, 69, 1);
  color: white;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
}

.copyDate {
  display: inline-block;
}

.siteDirectory {
  display: block;
  margin-left: 220px;
  padding-bottom: 40px;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
}

.directoryText {
  display: block;
  font-weight: bold;
  font-size: 22px;
  padding-bottom: 20px;
}

.directorySubText {
  display: block;
  font-weight: bold;
  font-size: 18px; 
  margin-bottom: 10px;
}

ul.siteDirectoryList {
  list-style-type: none;
  margin: auto; /* makes the list container center */
  padding: 0px; /* without this, there is space to the left of the ul */
}

ul.siteDirectoryList li a:not(.directoryLocation) {
  display: block;
  text-decoration: none; /* removes "a href" underline from text */
  color: rgba(120, 120, 120, 1); /* changes the "a href" blue text */
  padding-bottom: 10px;
}

ul.siteDirectoryList li a:hover {
  color: black;
  font-weight: bold;
}

.directoryLocation {
  display: block;
  text-decoration: none;
  color: black;
  padding-bottom: 10px; 
  font-weight: bold;
}

.thisDomain {
  margin-bottom: 30px;
}


.thisDomain, .otherDomains {
  display: inline-block;
  vertical-align: top;
  padding-right: 50px;
}




/* TERMS AND CONDITIONS PAGE *********************************************************************************************************************************************** */


.sectionHeading {
  display: block;
  text-align: center;
  font-weight: bolder;
  font-size: 36px;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  margin-top: 120px;
}

.separationDiv {
  margin-right: 25px; /* prevents div from extending to the right hand side of page */
  margin-left: 25px;
  margin-bottom: 20px;
  height: 20px; /* height should match margin-bottom when using border bottom, if you want to acheive even spacing top and bottom */
  border-bottom: 1px solid #ccc;
}

.termsContainer {
  display: block;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  margin-left: 50px;
  margin-right: 50px;
        background-color: white;
    border-radius: 5px;
    padding: 10px;

}

.termsContainer dl dt {
  font-weight: bold;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.termsContainer dd {
  margin-bottom: 10px;
    
}




/* PURCHASE CONFIRMATION PAGE *********************************************************************************************************************************************** */


.error {
  color: red;
  font-weight: bold;
}

.inlineBold {
  display: inline-block;
    font-weight: bold;
}

.confirmationFormDiv {
  display: block;
  width: 1140px;
  margin: auto;
  margin-top: 140px;
  margin-bottom: 50px;    
  padding: 20px 0px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: white; 
}

.confirmationText {
  text-align: center;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-weight: bold;
  font-size: 30px;
  color: #33ff00;
}

.confirmationTextError {
  text-align: center;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-weight: bold;
  font-size: 30px;
  color: red;
}

.confirmationSummaryContainer {
  display: block;
  width: 1140px;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 50px;    
  padding: 20px 0px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: white; 
}

.confirmationGroup {
  margin: 30px 0px;
}

.confirmationSummaryText {
  display: inline-block;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-weight: bold;
  margin-left: 20px;
  width: 190px;
    
}

.confirmationSummaryValue {
  display: inline-block;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  margin-left: 20px;
  border: 1px solid #ccc;
  width: 350px;
  border-radius: 5px;
  padding: 3px;
}

.confirmationSummaryTickBox {
  display: block;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  margin: 10px 0px 20px 20px;
}

.confirmationWalletAddress {
  margin: 10px 0px 40px 40px;    
  font-weight: bold;
}

.referenceNumber {
  display: inline-block;
    font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
    margin-left: 20px;
}

.stepsTextCompleted {
  display: block;
  color: #ccc;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-weight: bold;
  font-size: 25px;
  margin: 30px 0px 20px 0px;
}

.stepsValueCompleted {
    display: inline-block;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
    font-size: 18px;
    color: #ccc;
}

.walletCompleted {
  display: block;
    color: #ccc;
    margin: 20px 0px 30px 40px;
    font-size: 20px;
}


.contactFormDivConfirmationPage {
  display: block;
  width: 1140px;
  margin: auto;
  margin-bottom: 40px;
  
  border-radius: 10px;
  
}

/* CONTACT US DOMAINS PAGE *********************************************************************************************************************************************** */

.messageSentContainer {
  display: block;
  width: 1140px;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 140px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: white;
  text-align: center;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
  font-weight: bold;
  font-size: 22px;
  color: #33ff00;
  padding: 20px 0;
}

.messageText {
  margin: 20px;
}

.messageValue {
  margin: 20px;
}

.contactSummaryContainer {
  display: block;
  width: 1140px;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 40px;
  padding-top: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: white;
  font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", "monospace";
}

.contactUsMessageContainer {
  display: block;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 0px 40px 0px 20px;
  min-height: 120px;
  padding: 8px;
}

.introVidContactUs {
  background-color: black;
  width: 50vw; /* this is the maximum percentage the div will fill on a page */
  height: 50vh; /* this is the maximum height of the div, which is 60% of the viewport height. It does not make images or videos stretch */
  margin: auto; /* this centers the content container in the middle of the page */
  display: flex; 
  justify-content: center; /* This, along with "display:flex" above makes the image stretch the entire height of the div, then below "align-self:flex-end" fixes that so doesnt stretch and aligns to bottom */
  align-self:flex-end;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 50px;
}











