/* 
Custom Product Catalog Page CSS 
 * Author       : Tom Schweers
 * Date         : 06/09/2023
 * Description  : Style the custom catalog page where users select models to configure.
*/
html {
  scroll-behavior: smooth;
}

#wrapper #wrapper-inner.clearfix #content,
#family-nav {
  display: none;
}

#wrapper-inner::before {
  content: "LOADING..." !important;
}

/* Loading spinner */
.custom-loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #2287de;
  aspect-ratio: 1 / 1;
  width: 4%;
  -webkit-animation: spin 1s linear infinite;
  /* Safari */
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 47.6%;
  margin-top: 10%;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.custom-page-header {
  display: block;
  background-color: aliceblue;
  text-align: center;
  margin-bottom: 10px;
  padding: 15px 0px;
  font-size: 14px;
  font-weight: bold;
  color: #444;
  border-bottom: 2px solid #0577DA;
  letter-spacing: 1px;
}

#flowserve-container {
  border: 1px solid #d6dfe6;
  margin: 10px;
  margin-right: 10px;
  margin-left: 10px;
  padding: 10px;
  border-radius: 3px;
  background: #fff;
  text-align: left;
  min-height: 600px;
  position: relative;
  width: 1150px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

/* HOMEPAGE *********************************************************************************/

.homepage-wrapper {
  margin-top: 20px;
}

.homepage-section-wrapper {
  width: auto;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  font-size: .9em;
}

.homepage-top-section {
  margin-bottom: -10px;
}

.homepage-migration {
  border: 2px solid #f8d086;
  border-radius: 5px;
  padding: 10px;
  background-color: #fef5e4;
}

.homepage-section {
  background-color: #004777;
  border: 1px solid #010005;
  margin-right: 2%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: white;
  text-align: center;
  font-family: sans-serif;
  border-radius: 5px;
  width: 23%;
  height: 50%;
  padding: 1%;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  cursor: pointer;
}

.homepage-section:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #053d63;
}

.technical-section {
  background-color: #fff;
  margin-right: 2%;
  margin-top: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  font-family: sans-serif;
  width: 23%;
  height: 50%;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
}

.technical-section ul {
  display: none;
  padding: 0;
  width: 100%;
  font-size: 1.1em;
  line-height: 20px;
  list-style-type: none;
  background-color: #fff;
  margin-top: -5px;
}

.technical-section li {
  background-color: #f1f1f1;
  margin-bottom: 5px;
  text-align: left;
}

.technical-section li:hover {
  background-color: #fff;
}

.technical-section a {
  display: flex;
  padding: 4px 0px 0px 7px;
}

.homepage-inactive {
  background-color: #ddddde;
  border: 1px solid #646363;
  margin-right: 2%;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  font-family: sans-serif;
  border-radius: 5px;
  width: 23%;
  height: 50%;
  padding: 1%;
  cursor: not-allowed;
  color: #646363;
  opacity: 0.4;
}

.homepage-img {
  height: 30px;
  width: 30px;
  margin-right: 5px;
  margin-top: 5px;
}

.homepage-header {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  color: #2a2a2a;
}

.homepage-break {
  height: 15px;
}

.homepage-divider {
  height: 3px;
  background-color: #f0f8ff;
  margin-top: 40px;
}

.homepage-contact {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  padding: 3px 0px 20px 20px;
  border: 1px solid #c5c6c7;
  border-radius: 3px;
}

#homepage-contact-category {
  font-weight: bold;
}

.homepage-contact-msg {
  background: none repeat scroll 0 0 #F7F7F7;
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 100%;
  padding: 0.6em 0.5em 0.7em;
  border-color: #B7B7B7 #E8E8E8 #E8E8E8 #B7B7B7;
  border-style: solid;
  border-width: 1px;
  margin-top: 10px;
}

.homepage-contact-msg:hover {
  background: none repeat scroll 0 0 #E4E4E4;
  font-size: 100%;
  padding: 0.6em 0.5em 0.7em;
  border-color: #B7B7B7 #E8E8E8 #E8E8E8 #B7B7B7;
  border-style: solid;
  border-width: 1px;
  margin-top: 10px;
}

.homepage-contact-submit {
  background-color: #004777;
  color: white;
  border: 1px solid black;
  border-radius: 2px;
  cursor: pointer;
  text-transform: uppercase;
  padding: 6px 12px;
}

.homepage-contact-submit:hover {
  background-color: white;
  color: #004777;
  font-weight: bold;
}

/* PRODUCT CATALOG *********************************************************************************/
.flowserve-catalog-container {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  width: 1148px;
  scroll-behavior: smooth;
}

.flowserve-product-line-container {
  padding: 40px 0 30px;
  border: 1px solid #003766ab;
  border-radius: 5px;
  padding: 20px 20px 5px 20px;
  margin-bottom: 10px;
  /*background-color: #e4e4e457;*/
  background-color: #c3dcee;
  box-shadow: 0 0 3px hsla(244, 80%, 30%, 0.3);
  cursor: pointer;
}

.flowserve-product-line-label {
  margin: 0 0 1em 0;
  font-size: 14px;
  font-weight: 400;
}

.flowserve-product-line-desc {
  padding-bottom: 5px;
}

.flowserve-model-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 10px;
}

.flowserve-model-link {
  color: inherit;
  box-shadow: 0 0 3px hsla(244, 80%, 30%, 0.3);
  border-radius: 5px;
  overflow: hidden;
  display: block;
  background-color: white;
  transition: all 0.25s ease-out;
  text-decoration: none;
  height: 70%;
  text-align: center;
}

.flowserve-model-link:hover {
  box-shadow: 0 0 5px hsla(2000, 90%, 30%, 1.8);
  text-decoration: none !important;
}

.flowserve-model-link h3 {
  font-size: 11px;
  line-height: 1.5;
  height: 3em;
}

.flowserve-anchor {
  margin-top: -48px;
  height: 48px;
  visibility: hidden;
  display: block;
}

.flowserve-catalog-header {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 3px;
  margin-bottom: 10px;
  border: 1px solid #004777;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #ffffff57;
  box-shadow: 0 0 3px hsla(244, 80%, 30%, 0.3);
  width: 1148px;
  -webkit-transition: all 100ms linear;
  -moz-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}

.flowserve-catalog-header a {
  color: #093357 !important;
  text-align: center;
}

.flowserve-fixed-header {
  position: fixed;
  top: 0;
  background-color: white;
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #2488de;
  margin-left: -1000px;
  padding-left: 1000px;
  margin-right: -1000px;
  padding-right: 1000px;
}

.flowserve-fixed-header+.flowserve-catalog-container {
  padding-top: 50px;
}

.flowserve-back-to-quote {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 1px solid black;
  padding: 5px 15px;
  border-radius: 3px;
  background-color: #004777;
  color: white;
  letter-spacing: 0.5px;
}

.flowserve-search-container-pc {
  width: 150px;
  position: absolute;
  display: block;
  top: 20px;
  right: 220px;
}

.flowserve-search-container-hp {
  width: 150px;
  position: absolute;
  display: block;
  top: 20px;
  right: 40px;
}

.flowserve-search-input {
  border: 1px solid #004777;
  padding: 5.4px 10px;
  outline: none;
  border-radius: 15px;
  font-size: 12px;
  background: url("/bmfsweb/devflowserve/image/Icons/func_magnify_ena.png") no-repeat right;
  background-position: 95% 50%;
  background-color: white;
  transition: all .5s;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  width: 100%
}

.flowserve-search-input:hover {
  width: 155px;
  box-shadow: rgba(0, 0, 0, 0.13) 1.95px 1.95px 2.6px;
}

.flowserve-expand-collapse {
  height: 10px;
  margin-right: 6px;
}

/* Guided Selling submenu in Header icons */
.flowserve-nav-submenu {
  width: 500px;
  height: 100px;
  background-color: #f2f2f3;
  top: 0;
  position: fixed;
  margin-right: 5%;
  margin-top: 56px;
  box-shadow: 1px 1px 10px 0 hsla(0, 0%, 0%, 0.45);
  flex-direction: row;
  justify-content: center;
  z-index: 99;
  right: 0;
}

.flowserve-submenu-link {
  cursor: pointer;
  width: 80px;
  height: 80px;
  border: none;
}

.flowserve-submenu-link h3 {
  color: #036 !important;
  font-size: 12px;
  text-align: center;
  margin: 10px 0;
  font-weight: bold !important;
}

.flowserve-submenu-link:not(.submenu-link-disabled):hover {
  background-color: white;
  border-radius: 3px;
  border: 1px solid #e5e6e6;
}

.submenu-link-disabled:hover {
  cursor: not-allowed;
}

.submenu-link-disabled {
  opacity: 50%;
}

.flowserve-submenu-link img {
  height: 30px;
  width: 30px;
  margin-left: 23px;
  margin-top: 10px;
}

/* TS added 8/7/24 - Product Family Dropdown Menu at top of Product Catalog */
.homepage-pf {
  display: block;
  font: 13px Helvetica, Tahoma, serif;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 15px;
  left: 20px;
}

.homepage-pf li {
  display: inline-block;
  list-style: none;
}

.homepage-pf .button-dropdown {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  width: 190px;
}

.homepage-pf li a {
  display: block;
  color: #333;
  background-color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  width: 150px;
  height: 100%;
  cursor: pointer;
  color: #444;
}

.homepage-pf li a span {
  display: inline-block;
  margin-left: 20px;
  color: #999;
}

.homepage-pf li a:hover,
.homepage-pf li a.active {
  background-color: #1d82db;
  color: #fff;
}

.homepage-pf li .dropdown-menu {
  position: absolute;
  left: 0;
  padding: 0;
  margin: 0;
  margin-top: 1px;
  text-align: left;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 10px 15px;
}

.homepage-pf li .dropdown-menu a {
  width: 150px;
}