/* Top Nav Edits Begin */
.top-main-desktop-nav {
  display: none;
}

.top-main-desktop-nav_phone,
.top-main-desktop-nav_search {
  margin-right: 5px;
}

.top-main-desktop-nav_phone img,
.top-main-desktop-nav_search img {
  width: 32px;
}


.top-main-desktop-nav_search_form {
  display: none;
  position: absolute;
  top: 100px;
  width: 100%;
  left: 0;
  right: 0;
  background-color: #b6b7b9;
  padding: 24px 15%;
  z-index: 10;
}

    .top-main-desktop-nav_search_form #topNavSearch::placeholder,
    .top-main-desktop-nav_search_form .searchClose {
        font-family: "Avenir Next Rounded W05 Bold";
        font-style: normal;
        font-weight: 700;
    }


.top-main-desktop-nav_phone_number {
    display: none;
    position: absolute;
    top: 100px;
    width: 100%;
    left: 0;
    right: 0;
    background-color: #e05553;
    padding: 20px;
    z-index: 10;
    text-align: center;
    font-family: "Trade Gothic LT W05 Bd Cn No-2";
    font-style: normal;
    font-size: 20px;
}

.top-main-desktop-nav_phone_number a:link {
  color: white;
  font-size: 70px;
  letter-spacing: 1px;
}

    .top-main-desktop-nav_phone_number span {
        font-family: "Avenir Next Rounded W05 Regula";
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        margin-left: 20px;
    }

    .top-main-desktop-nav_phone_number .phoneClose {
        font-family: "Avenir Next Rounded W05 Regula";
        font-style: normal;
        font-weight: 400;
        display: inline-block;
        width: auto;
        cursor: pointer;
        font-size: 18px;
        position: relative;
        top: -17px;
        left: 30%;
    }

@media (min-width: 720px) {
  /* Keep mobile nav active for larger widths */
  #mobile-menu {
    display: block;
    top: 14px;
    right: 10px;
  }

  /* Move Vanilla Snipe Down */
  #vanillaHomeCallout a {
    top: -22px;
  }
}

@media (min-width: 960px) {
  #mobile-menu {
    display: none;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  a#logo {
    height: auto;
  }
  
  /* Make Logo Smaller to accomodate top nav links */
  a#logo img {
    max-width: 240px;
    margin-top: 0;
  }

  .top-main-desktop-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

    .top-main-desktop-nav_link {
        text-transform: uppercase;
        color: #b6b7b9;
        font-size: 10px;
        font-family: "Avenir Next Rounded W05 Bold";
        font-style: normal;
        font-weight: 700;
        margin-right: 10px;
        transition: 0.2s all;
    }

  .top-main-desktop-nav_link:hover {
    color: #e05553;
  }

  .top-main-desktop-nav_search.active:before {
    content: " ";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    top: 90px;
    right: 57px;
    border: 0 solid transparent;
    border-right-width: 10px;
    border-left-width: 10px;
    border-bottom: 10px solid #b6b7b9;
  }

  .top-main-desktop-nav_search.active + .top-main-desktop-nav_search_form {
    display: block;
  }

  .top-main-desktop-nav_search.active + .top-main-desktop-nav_search_form #topNavSearch {
    width: 96%;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    display: inline-block;
  }

  .top-main-desktop-nav_search_form .searchClose {
    display: inline-block;
    width: auto;
    cursor: pointer;
    font-size: 17px;
    position: relative;
    top: 0px;
    left: 11px;
  }


  .top-main-desktop-nav_phone.active + .top-main-desktop-nav_phone_number {
    display: block;
  }

  .top-main-desktop-nav_phone.active:before {
    content: " ";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    top: 90px;
    right: 17px;
    border: 0 solid transparent;
    border-right-width: 10px;
    border-left-width: 10px;
    border-bottom: 10px solid #e05553;
  }

  /* Edits to utility nav language toggle */
  #language {
    display: block;
    display: none;
    position: relative;
  }

  #language nav {
    display: none;
    position: absolute;
    bottom: -18px;
  }

  /* Main content section needs to move down due to removal of side nav */
  .main {
    margin-top:-30px;
  }


  .top-main-desktop-nav_phone,
  .top-main-desktop-nav_search {
    margin-right: 10px;
  }

  .top-main-desktop-nav_search {
    margin-left: 0;
  }  
}

@media (min-width: 1080px) {
  .top-main-desktop-nav_link {
    font-size: 11px;
    margin-right: 20px
  }
}

@media (min-width: 1200px) {
  .top-main-desktop-nav_link {
    font-size: 12px;
    margin-right: 25px
  }
}

@media (min-width: 960px) {
	.main {
		margin-top: 30px;
	}
}

@media (min-width: 720px) {
    .main {
        margin-top: 20px;
    }
}