* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow: hidden;
  user-select: none;
}
:root {
  --user: #6895dc;
  --tabs-hover: #a8c7fa;
  --tabs: #d3e3fd;
  --white: #fff;
  --black: #000;
  --border-btm: #e1e3e1;
  --adress-bar: #edf2fa;
  --adress-bar-focus: #0b57d0;
  --adress-bar-shadow: rgba(0, 0, 0, 0.2);
  --navicon-hover: #f2f2f2;
  --main: #fff;
  --test: red;
  --close-hover: #dcdcdd;
  --color: #474747;
  --box: #00000014;
}

.user-icon {
  background: none;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--user);
  font-size: 20px;
  transition: background 0.15s;
  margin: 7px 7px 0 7px;
}

.user-icon:hover {
  background: var(--tabs-hover);
}

.tabs {
  background-color: var(--tabs);
  width: 100%;
  height: 45px;
  display: flex;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.tab.active {
  width: 233px;
  height: 35px;
  background: var(--white);
  margin: 10px 10px 0 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  position: relative;
}
.tab.active:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -11.9px;
  width: 12px;
  height: 12px;
  background: var(--white);
  mask-image: radial-gradient(circle at 0 0, transparent 12px, var(--white) 0);
}
.tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -12px;
  width: 12px;
  height: 12px;
  background: var(--white);
  mask-image: radial-gradient(circle at 12px 0, transparent 12px, var(--white) 0);
}
.tab.active:hover {
  background: var(--white);
  height: 35px;
  width: 233px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.tab:not(.active) {
  width: 233px;
  height: 35px;
  margin: 10px 10px 0 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
}
.tab:hover {
  width: 233px;
  height: 30px;
  background: var(--tabs-hover);
  margin: 10px 10px 0 0;
  border-radius: 10px;
  display: flex;
}
#new-tab i {
  margin: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--color);
  transition: all 0.2s ease;
  font-size: 12px;
}

#new-tab i:hover {
  background: var(--tabs-hover);
}
.tabicon img {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  margin-top: 2px;
  border-radius: 50%;
}
.tab-title {
  font-size: 12px;
  padding: 7px 130px 0 6px;
}
.close i {
  font-size: 12px;
  margin-top: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

}
.close i:hover {
  background-color: var(--close-hover);
  opacity: 1;
}
.nav {
  height: 45px;
  position: fixed;
  top: 45px;
  left: 0;
  width: 100%;
  display: flex;
  background-color: var(--white);
  z-index: 999;
}

.navicons {
  display: flex;
  border-bottom: 1px solid var(--border-btm);
  height: 45px;
  width: 100vw;
  position: relative;
}

.navicon:hover, .ab-btn:hover, .setting:hover {
  background: var(--navicon-hover);
}

#adressbar {
  flex-grow: 1;
  width: auto;
  height: 30px;
  border-radius: 20px;
  margin: 8px 0 0 6px;
  background-color: var(--adress-bar);
  border: none;
  outline: none;
  padding-left: 10px;
  color: var(--color);
  transition: height 0.2s ease;
}


#adressbar:focus {
  outline: var(--adress-bar-focus) 2px solid;
  /* outline-offset: 0.1px; */

background-color: white;}
#adressbar:focus::placeholder {
  color: transparent;
}
#adressbar.outline:focus {
  outline: none !important;
  background-color: var(--white) !important;
  border-radius: 15px;
  height: 40px;
  box-shadow: 0 4px 8px 2px var(--adress-bar-shadow);

}

.ab-btn {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: transparent;
  margin-top: 7px;
  margin-left: 7px;
}

.action-btn {
  width: 20px;
  height: 20px;
  fill: var(--color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.setting {
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.15s;
  margin-top: 7px;
  margin-right: 10px;
  color: var(--color);
}

/*Main page*/
.browser {
  width: 100%;
  background-color: var(--main);
  overflow-x: hidden;
  overflow-y: auto;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  height: 100vh;
}
.main {
  width: 100%;
  background-color: var(--main);
  overflow-x: hidden;
  overflow-y: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  height: 100vh;
}
.icontainer {
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: flex-end;
}
.info {
  background-color: var(--box);
  width: 350px;
  height: 120px;
  margin: 110px 20px 0 870px;
  border-radius: 30px;
  user-select: none;
}
.info p {
  font-size: 16px;
  padding-top: 10px;
}
#welcome {
  text-align: center;
  margin-bottom: 30px;
}
#welcome img {
  width: 10%;
  height: 10%;
  border-radius: 50%;
  
}
.search {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search input {
  width: 40%;
  height: 50px;
  border: none;
  border-radius: 20px;
  outline: none;
  padding: 10px;
  background-color: var(--box);
}
@media (max-width: 1197px) {
  .info {
    display: none;
  }
}
.forbidden {
 width: 100%;
 height: 100vh;
  overflow: hidden;
  /* top: 0;
  left: 0;
  right: 0;
  bottom: 0; */
  position: fixed;
  /* background-color: #000; */
  color: var(--color);
  text-align: center;
}
.forbidden h1 {
  font-size: 150px;
  margin-top: 150px;
}