/* html, body {
   width: 100%;
   height: 100%;
   overflow-x: hidden;
}
body {
   font-family: "Roboto", sans-serif;
   color: #2d2d2d;
   letter-spacing: 0.2px;
} */
body.search-active {
   overflow: hidden;
}
body.search-active .search-input {
   opacity: 1;
   transform: none;
   pointer-events: all;
}
body.search-active .icon-close {
   opacity: 1;
   transform: rotate(-90deg);
}
body.search-active .control {
   cursor: default;
}
body.search-active .control .btn-material {
   transform: scale(100);
}
body.search-active .control .icon-material-search {
   opacity: 0;
}
/* Close Icon */
.icon-close {
   position: fixed;
   top: 60px;
   right: 30px;
   color: #fff;
   cursor: pointer;
   font-size: 23px !important;
   opacity: 0;
   z-index: 2;
   transition: all 0.3s ease-in-out;
}
.icon-close:hover {
   transform: rotate(0);
}
/* Search Input */
.search-input {
   height: 80px;
   position: absolute;
   top: 50%;
   left: 50px;
   margin-top: -40px;
   pointer-events: none;
   opacity: 0;
   transform: translate(40px, 0);
   transition: all 1s ease-in-out;
   z-index: 2;
}
.search-input input {
   color: var(--danger);
   font-size: 54px;
   border: 0;
   background: transparent;
   -webkit-appearance: none;
   box-sizing: border-box;
   outline: 0;
   font-weight: 200;
}
.search-input ::-webkit-input-placeholder {
   color: rgb(168, 168, 168);
}
.search-input :-moz-placeholder {
   color: #eee;
   opacity: 1;
}
.search-input ::-moz-placeholder {
   color: #eee;
   opacity: 1;
}
.search-input :-ms-input-placeholder {
   color: #eee;
}
/* Container */
.container {
   padding-right: 50px;
   padding-left: 50px;
   position: relative;
}
.container.container-dark {
   background: #22313f;
   color: #fff;
}
/* Control btn */
.control {
   cursor: pointer;
}
.control .btn-material {
   position: absolute;
   top: -37px;
   width: 35px;
   height: 35px;
   right: 60px;
   border-radius: 100%;
   box-sizing: border-box;
   background: #ffffff52;
   outline: 0;
   z-index: 1;
   transform-origin: 50%;
   box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   backdrop-filter: blur(1px);
}
.control .btn-material:hover {
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.control .icon-material-search {
   color: #fff;
   position: absolute;
   z-index: 2;
   top: -29px;
   right: 68px;
   transition: opacity 0.3s ease-in-out;
   font-size: 19px;
}
/* Utilities */
.p-y-md {
   padding-top: 2.8rem;
   /* padding-bottom: 2.8rem; */
}
/* Typo */
h1, h2 {
   font-weight: 300;
}
