@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
body {
	font-family: 'Roboto', sans-serif;
	color: #303030;
	background: #f2f2f2;
  font-size: 16px;
}

:root{
  --main-blue:#1766DC;
  --main-blue-2:#2366C9;
  --main-white:#f2f2f2;
}

.mod-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top:0;
  left:0;
  margin:0;
  padding: 0;
  background: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mod-hide {
  display: none;
}

.mo-container { 
  margin:0;
  padding: 0;
	background: #fff;
	position: relative;
	border-radius: 0.32rem;
	box-shadow: rgba(100,100,111, 0.2) 0px 7px 29px 0px;
  padding: 0.938rem;
}

.mo-container img {
  width: 100%;
}

.mo-container * {
  margin:0;
  padding:0;
}

.mcr-button-x {
  position: absolute;
	top: 0.6rem;
	right: 0.40rem;
	width: 1.50rem;
	height: 1.50rem;
	border: none;
	background: var(--main-blue-2);
	cursor: pointer;
	transition: .3s ease all;
	border-radius: 0.31rem;
	color: var(--main-white);
}

.mcr-button-x:hover {
  background: var(--main-white);
  color: var(--main-blue-2);
}

.mcr-button-x svg{
  width: 100%;
  height: 100%;
}

.mcr-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100vw - 6.25rem);
  height: calc(100vh - 7.813rem);
  min-width: 21.875rem;
  overflow-y: auto;
  overflow-x: hidden;
  border:1px solid var(--main-white);
  padding: 0.625rem;
}

.mcr-content.mc-no-scroll {
  overflow-y: hidden;
}

.mcr-content.mc-wd-4 {
  width: 98vw; /*mas de esto se esonde en viewport, en res 1934.39w x 944.06.h ok*/
}

.mcr-content.mc-wd-3 {
  width: 75vw;
}

.mcr-content.mc-wd-2 {
  width: 50vw;
}

.mcr-content.mc-wd-1 {
  width: 25vw;
}

.mcr-content.mc-wd-0 {
  width: 15vw;
}

.mcr-content.mc-hg-4 {
  height: 95vh; /*mas de esto se esonde en viewport, en res 1934.39w x 944.06.h ok*/
}

.mcr-content.mc-hg-3 {
  height: 75vh;
}

.mcr-content.mc-hg-2 {
  height: 50vh;
}

.mcr-content.mc-hg-1 {
  height: 25vh;
}

.mcr-content.mc-hg-0 {
  height: 15vh;
}

.mcr-content::-webkit-scrollbar {
  width: 0.438rem;
}

.mcr-content::-webkit-scrollbar-track {
  width: 0.25rem;
  background: var(--main-white);
}

.mcr-content::-webkit-scrollbar-thumb {
  background-color: var(--main-blue);
  border-radius: 0.313rem;
}

/*monitor laptop*/
@media (max-width:1458.8px){
  .mcr-content.mc-wd-4 {
    width: 96.4vw; 
  }
  .mcr-content.mc-hg-4 {
    height: 93vh;
  }
}

@media (max-width:1399.98px){
  /*to-do*/
}

@media (max-width:991.98px){
  body {
    font-size: 15px;
  }
}

@media (max-width:767.98px){
  body {
    font-size: 14px;
  }
}

@media (max-width:575.98px){
  body {
    font-size: 13px;
  }
}


