/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/



.domain-search-box {
  
  display: flex;
  justify-content: center;
  margin: 20px auto;
  max-width: 100%;
  font-family: Arial, sans-serif;
  height: 50px;
}

.domain-search-box form {
  display: flex;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-input {
  display: flex;
  align-items: center;
  background: #fff;
   
  flex: 1;
  padding: 0 10px;
}
.search-input input::placeholder {
  color: #000;   /* Black */
  font-size: 18px;
  font-weight: 400;
  opacity: 1;    /* optional: kuch browsers me light dikhata hai, isliye 1 set karo */
}

.search-input .icon {
  margin-right: 8px;
  color: #000;
 
}

.search-input input {
  border: none;
  outline: none;
 height: 50px;
  width: 500px;
  padding: 12px;
  font-size: 16px;
}


.btn-search {
  background: #243c96; /* Blue color */
  color: #fff;
  border: none;
  border-color:#243c96 ;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0 20px;
  font-size: 16px;
  cursor: pointer;
   
  transition: background 0.3s ease;
}

.btn-search:hover {
  background: #1c2f78;
}

.domain-offer {
  background: linear-gradient(to right, #F67345, #E84F19);

  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  margin-left: 10px;
  padding: 0 15px 0 15px;
  cursor: pointer;
  /* padding: 10px 15px;
  margin-left: 10px;
  font-size: 14px;
  text-align: center;
  min-width: 120px; */
}

 .domain-offer span {
  font-size: 20px;
  font-weight: 800;
  padding-left: 5px;
}

.domain-offer span span {
  font-size: 12px;
  line-height: 1.2;
  display: flex;
  font-weight: 300;
  flex-direction: column;
  align-items: center;
}
.domain-offer span span.span-top
{
 font-size: 14px;
 margin-right: 5px;
 font-weight: 700;
}