
/* MODAL */
.modal[aria-hidden="true"] {
  display: none;
}
.modal-overlay {
  z-index: 9998;
  background-color: rgba(11, 41, 88, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
}
.modal-content {
  background-color: #FFF;
  color: #222;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 50px 5%;
  width: 900px;
  max-width: 90%;
  min-height: 400px;
  max-height: 90%;
  border-radius: 2px;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: 0;
  padding: 0;
  background-color: transparent;
  font-weight: 600;
  font-size: 1.25em;
  width: 25px;
  height: 25px;
  text-align: center;
  cursor: pointer;
  outline: none;
}
/*
body.pop-opened .header-desktop,
body.pop-opened #main,
body.pop-opened .footer {
  filter: blur(10px);
}
*/


/* TAB */
.tab-network section {
  display: none;
  border-top: 1px solid #ddd;
}
.tab-network input {
  display: none;
}
.tab-network label {
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #bbb;
  border: 1px solid transparent;
  position: relative;
  padding-left: 55px;
}
.tab-network label:before {
  content: '';
  display: inline-block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  left: 22px;
  top: 16px;
  width: 22px;
  height: 22px;
}
.tab-network label[for*='1']:before {
  background-image: url(../images/icon/network-global.svg);
}
.tab-network label[for*='2']:before {
  background-image: url(../images/icon/network-domestic.svg);
}
.tab-network label:hover {
  color: #888;
  cursor: pointer;
}
.tab-network input:checked+label {
  color: #555;
  border: 1px solid #ddd;
  border-top: 2px solid var(--color4);
  border-bottom: 1px solid #fff;
}
.tab-network #tab1:checked~#content1,
.tab-network #tab2:checked~#content2 {
  display: block;
}
@media screen and (max-width: 650px) {
  .tab-network label {
    font-size: 0;
    padding: 30px 50px;
  }
  .tab-network label:before {
    margin: 0;
    left: 50%;
    margin-left: -14px;
    top: 16px;
  }
}




/* FLAGS */
.flags-grid a {
  color: #444;
  display: block;
  padding: 15px 0;
}
.flags-grid:hover {
  background: #fafafa;
  border-radius: 2px;
}
.flags-grid img {
  float: left;
  width: 21px;
  margin-right: 10px;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.modal-content h2 {
  font-size: 2rem;
}
.modal-content .subtitle {
  font-family: 'Source Code Pro', monospace;
  color: #666;
  margin-bottom: 40px;
}
.home3modal h2 {
  font-size: 1.6rem;
  color: #0065ff;
  font-weight: bold;
  padding-bottom: 15px;
}

body.post-type-archive-vendor .flags-grid-eu {
  display: none;
}