

/******************
MMR MERGED: /wp-content/themes/ihor-thm/template-parts/blocks/domain/domain.css
***************/

 /*input*/
.dc-form{
  display: flex;
  justify-content: center;
}
.dc-form [name="domaincheck_domain"]{
  height: 30px;
  max-width: 100%;
  border: 1px solid #ddd;
  background: #fff;
  color: #444;
  transition: all .2s linear;
  border-radius: 4px;
  height: 40px;
  padding: 8px 6px;
  font-size: 16px;
  padding-left: 30px
}
.dc-form [name="domaincheck_domain"] + #dc-submit-1{
  margin-top: 0;
}
.dc-form > div{
  position: relative;
}
.dc-form > div::before {
  content: '\f002';
  position: absolute;
  top: 50%;
  width: 30px;
  margin-top: -7px;
  font-size: 14px;
  color: #999;
  text-align: center;
  pointer-events: none;
  font-family: FontAwesome;
  display: block;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*results table*/

.base-table,
#dc-result-1 .table{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.base-table .table-row,
#dc-result-1 .table-row{
  display: flex;
  width: calc((100% - 16px ) / 2);
  flex-direction: column;
  align-items:  center;
  padding: 15px;
  color: #444;
  border: 1px solid #ddd;
  border-radius: 4px;
}
#dc-result-1 .table-row.available .table-cell-status{
  display: none;
}
#dc-result-1 .table-cell-whois {
  color: transparent;
}
.base-table .table-cell-purchase,
#dc-result-1 .table-cell-purchase{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.table-cell-domain{
      margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-transform: none;
    color: #444;
}
.table-cell-domain strong{
  font-weight: normal;
  color: #2f76ec;
}
.table-cell-purchase,
.table-cell-status{
    font-size: 24px;
    line-height: 30px;
      color: rgb(197, 50, 50);
}
#dc-result-1 .table-cell-whois,
#dc-result-1 .table-cell-purchase{
  display: flex;
  padding: 0;
}
#dc-submit-1,
.table-cell-whois a,
.table-cell-purchase a{
  appearance: none;
  border: none;
  display: block;
  margin-top: 15px;
  min-height: 40px;
  padding: 0 15px;
  line-height: 38px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  background-color: #2f76ec;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, .05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .1);
}
.table-cell-purchase a:hover{
  background-color: #45acf5;
}
.table-cell-purchase a:focus{
  background-color: #35b3ee;
}
.table-cell-purchase a:active{
  background-color: #0091ca;
}
.table-cell-whois a{
  background-color: #da314b;
}
.table-cell-whois a:hover,
.table-cell-whois a:focus{
  background-color: #e4354f;
}
.table-cell-whois a:active{
  background-color: #c91032;
}
@media (min-width: 768px) {
  .base-table .table-row,
  #dc-result-1 .table-row {
    width: calc((100% - 16px * 2 ) / 3);
  }
}
@media (min-width: 992px) {
  .base-table,
  #dc-result-1 .table{
    gap: 30px;
  }
  .base-table .table-row,
  #dc-result-1 .table-row {
    width: calc((100% - 30px * 2) / 3);
  }
}


/******************
MMR MERGED: /wp-content/plugins/wp24-domain-check/assets/css/domaincheck.css
***************/

.wp24-dc form > div,
.wp24-dc .dc-form > div {
	display: flex;
	align-items: center;
}

.wp24-dc form div *,
.wp24-dc .dc-form div * {
	float: left;
}

.wp24-dc > br {
	clear: both;
}

.wp24-dc form input[type="text"],
.wp24-dc .dc-form input[type="text"] {
	margin: 0 10px 0 0;
}

.wp24-dc form select,
.wp24-dc .dc-form select {
	margin: 0 10px 0 10px;
}

@media (min-width: 500px) {
	.wp24-dc .table {
		display: table;
	}

	.wp24-dc .table-row {
		display: table-row;
	}

	.wp24-dc .table-row br {
		display: none;
	}

	.wp24-dc .table-cell {
		display: table-cell;
		padding: 2px;
	}
}

.wp24-dc .dc-spinner {
	--border-color: #fff;

	position: relative;
	color: transparent !important;
}
.wp24-dc .dc-spinner::after {
	content: ' ';
	position: absolute;
	width: 1.2rem;
	height: 1.2rem;
	top: 50%;
	left: 50%;
	margin: -.5em 0 0 -.5em;
	font-size: 1.125rem;
	border-radius: 50%;
	border: .2em solid var(--border-color);
	border-bottom-color: transparent;
	animation: spinner 1s infinite linear;
}

@keyframes spinner {
	0% {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 500px) {
	.wp24-dc form > div,
	.wp24-dc .dc-form > div {
		display: inline;
	}

	.wp24-dc form input,
	.wp24-dc .dc-form input,
	.wp24-dc form button,
	.wp24-dc .dc-form button,
	.wp24-dc form select,
	.wp24-dc .dc-form select {
		width: 100% !important;
		margin: 5px 0 !important;
	}

	.wp24-dc form span.dot,
	.wp24-dc .dc-form span.dot {
		display: none;
	}

	.wp24-dc .table-row br {
		clear: both;
	}

	.wp24-dc .table-cell {
		float: left;
		padding: 0 5px;
	}
}

.whois-info pre {
	margin: 0;
	max-height: 500px;
	white-space: pre-wrap;
	overflow: scroll;
}

.whois-info-inline pre {
	margin: 0;
	padding: 5px;
	background-color: #eee;
	border: 1px solid #ccc;
}


/******************
MMR MERGED: /wp-content/plugins/wp24-domain-check/assets/css/jquery-modal.min.css
***************/

.blocker{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;overflow:auto;z-index:1;padding:20px;box-sizing:border-box;background-color:#000;background-color:rgba(0,0,0,0.75);text-align:center}.blocker:before{content:"";display:inline-block;height:100%;vertical-align:middle;margin-right:-0.05em}.blocker.behind{background-color:transparent}.modal{display:none;vertical-align:middle;position:relative;z-index:2;max-width:500px;box-sizing:border-box;width:90%;background:#fff;padding:15px 30px;-webkit-border-radius:8px;-moz-border-radius:8px;-o-border-radius:8px;-ms-border-radius:8px;border-radius:8px;-webkit-box-shadow:0 0 10px #000;-moz-box-shadow:0 0 10px #000;-o-box-shadow:0 0 10px #000;-ms-box-shadow:0 0 10px #000;box-shadow:0 0 10px #000;text-align:left}.modal a.close-modal{position:absolute;top:-12.5px;right:-12.5px;display:block;width:30px;height:30px;text-indent:-9999px;background-size:contain;background-repeat:no-repeat;background-position:center center;background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==')}.modal-spinner{display:none;position:fixed;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);padding:12px 16px;border-radius:5px;background-color:#111;height:20px}.modal-spinner>div{border-radius:100px;background-color:#fff;height:20px;width:2px;margin:0 1px;display:inline-block;-webkit-animation:sk-stretchdelay 1.2s infinite ease-in-out;animation:sk-stretchdelay 1.2s infinite ease-in-out}.modal-spinner .rect2{-webkit-animation-delay:-1.1s;animation-delay:-1.1s}.modal-spinner .rect3{-webkit-animation-delay:-1.0s;animation-delay:-1.0s}.modal-spinner .rect4{-webkit-animation-delay:-0.9s;animation-delay:-0.9s}@-webkit-keyframes sk-stretchdelay{0%,40%,100%{-webkit-transform:scaleY(0.5)}20%{-webkit-transform:scaleY(1.0)}}@keyframes sk-stretchdelay{0%,40%,100%{transform:scaleY(0.5);-webkit-transform:scaleY(0.5)}20%{transform:scaleY(1.0);-webkit-transform:scaleY(1.0)}}
