// Fonts
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");

// Variables
@import "variables";


//
// Colori
/* 

rosso #ef4043
verde #6ea038
giallo #F69F00
blu #292f43
azzurro #4fb5dd

azzurro link #0F9DEA

background title page + bread #f9f9f9
background-page #edeff0s
ds
sideleft background #272c40
sidelett item link BG #2d3349

nero #1B2431

bianco form input #f5f8fa

*/


html
{
    height: 100%;
}

body
{
	color: #454545;
	font-family: 'Open Sans',sans-serif;
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
	background: #edeff0;
	position: relative;
	min-height: 100%;
}

*
{
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:focus
{
	outline: none !important;
}

a
{
	text-decoration: none;
	color: #0050FF;
}

a:hover
{
  color: #0d8dd2;
  text-decoration: underline;
}

a{
	transition: all .2s ease-in-out;
}


a:hover{
	text-decoration: none;
}

.table
{
	margin-top: -1rem;
}

.table-bordered th,
.table th
{
    border-left: 0px;
    border-right: 0px !important;
    padding: 25px 15px;
    color: #0d6efd;
    font-size: 16px;
    font-weight: 700;
    box-sizing: border-box;
    height: 80px;
}

.table-bordered th:first-child,
.table th:first-child
{
	padding-left: 30px;
}

.table td:first-child
{
	padding-left: 30px;
}


.table-bordered th:last-child,
.table th:last-child
{
	padding: 10px 0px;
}

.table td
{
	border-left: 0px;
	border-right: 0px;
	padding: 20px 15px;
	color: #575B58;
	font-size: 16px;
}


.table td:last-child
{
	padding-right: 0px;
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: #fff;
}

.table th:last-child
{
	min-width: 90px;
	vertical-align: middle;
}


.table-bordered > :not(caption) > *{
	border-color: #C2D8FF;
	
}

.table-bordered > :not(caption) > * > *{
	border-width:0 2px;
}

.table .gridcol-image img, .brand-image
{
	width: 40px;
	height: 40px;
	padding: 3px;
	border: 1px solid #dedede;
	border-radius: 100%;
	object-fit: contain;
	object-position: 50%;
	background: #fff;
	display: block;
}
.form-control
{
	font-size: 14px;
	line-height: 28px;
	padding: 4px 16px;
	border-radius: 10px;
	background: #F4F7F9;
	border: none;
}

label.form-label{

}

.btn
{
	font-size: 14px !important;
	padding: 10px 25px;
	line-height: 19px;
	text-decoration: none;
	font-weight: 500;
	text-transform: none;
	border-radius: 60px;
}

.btn:hover
{
	text-decoration: none;
	opacity: 0.8;
}


.btn-primary,
.btn-secondary
{
	background-color: #0050FF;
	color: #fff;
	border-color: #0F9DEA;
	border:none;
}


.btn-primary:hover,
.btn-secondary:hover
{
	border:none;
	background: #d6e2ff;
	color: #0050FF;
}

.btn-add,
.btn-add:hover
{
	border-color: #ccd3d9;
	padding: 0px 10px;
	color: #0f9dea;
	overflow: hidden;
}

.btn-add .fa
{
	font-weight: 900;
	font-size: 12px;
	color: #8a99ac;
	background: #f7f7f7;
	height: 100%;
	line-height: 40px;
	width: 40px;
	border-right: 1px solid #ccd3d9;
	margin-left: -10px;
}

.dropdown-menu{
	border: none;
	border-radius: 10px;
	padding: 10px;
	
}

.dropdown-item{
	color: #9ea4ab;
}

.dropdown-item:hover{
	color: #0a58ca;
	background-color:transparent;
}

.breadcrumb a{
	color:#000;
	font-size:14px;
	font-weight: 200;
}

.breadcrumb-item.active{
	font-weight: 800;
	color:#000;
	font-size:14px;
}


.top-navbar {
    border-bottom: 1px solid darken($body-bg, 10%);
    background: white;
}

.sidebar
{
	position: absolute;
	background: #2d3349;
	width: 200px;
	margin: 0 !important;
	top: 0;
	padding: 0 !important;
	height: calc(100% - 52px);
}

.sidebar-menu
{
	width: 100%;
	margin: 0 !important;
	list-style-type: none;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
}

.sidebar-menu li
{
	padding: 10px 20px;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-menu li:first-child
{
	border-top: 1px solid rgba(255,255,255,0.05);
}

.sidebar-menu li:hover
{
/* 	background: #272c40; */
}

.sidebar-menu li a
{
	color: #C5D1CD;
	text-transform: uppercase;
	text-shadow: 1px 2px rgba(0,0,0,.2);
	font-weight: 600;
	text-decoration: none;
	font-size: 11px;
}

.sidebar-menu li a:hover
{
	color: #fff;
}

.sidebar-menu li a .fa
{
	color: #55698A;
	margin-right: 15px !important;
	line-height: 0 !important;
}

.sidebar-menu li.active{
	background: #fff;
	border-bottom: 1px solid transparent;
}

.sidebar-menu li.active a,
.sidebar-menu li.active i{
	color:#0050ff!important;
}

.content-sidebar
{
	margin-left: 200px;
	min-height: 100%;
	height: calc(100% - 52px);
	width: calc(100% - 200px);
}

.content-sidebar .container-fluid
{
	padding-bottom: 70px !important;
}

nav.top-navbar a:hover
{
	text-decoration: none;
}


.navbar-light .navbar-nav .nav-link{
	font-size:22px;
	color: #252829;
}

.dropdown-toggle::after{
	vertical-align: 0.2em;
}

.navbar-brand
{
	width: 100%;
	height: 50px;
	display: block;
	margin: 0;
}

.navbar-right i{
    color: #003CBF;
    font-size: 19px;
    margin-right: 4px;
}
.footer
{
	width: 100%;
	background: #003CBF;
	color: #80909A;
	position: absolute;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 0px 20px;
	bottom: 0;
	height: 70px;
}

.footer .navbar-brand
{
    width: 123px;
    height: 24px;	
    padding: 0;
}


.card{
	border-radius: 20px;
	border: none;
}



.badge
{
	min-width: 70px;
	padding: 0;
}

.group,
.group1,
.group2{
	background-color: #F0F0F0;
}




.text-right
{
	text-align: right !important;
}

.card-header
{
	background-color: transparent;
	border-bottom: none;
	padding: 1rem;
}

.card-header :not(.btn)
{
	font-weight: bold;
	font-size: 24px;
	color: #141414;
}

.card-header .fa
{
	font-weight: 600;
	font-size: 12px;
	color: #fff;
}

.table > :not(:first-child)
{
	border-top: 0px !important
}


.form-error {
    color: $error;
}


.table-action-td {
    width: 1%;
	text-align: center;
}

[v-cloak] {
    display: none;
}

.messages-box {
    position: fixed;
    top: 0;
    z-index: 100;
    pointer-events: none;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.messages-box .alert
{
    pointer-events: initial;

}

.messages-box .alert:hover
{
    opacity: 0.4;
}

.bootbox-body iframe 
{
    border: none;
    width: 100%;
}

.icon-small
{ 
    width: 16px;
    height: 16px;

    /*> svg
    {
        width: 1rem;
        height: 1rem;
    }*/
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid $primary;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
          animation: spinner-border .75s linear infinite;
}

.ml-auto{
    margin-left:auto
}

.lucide-icon{
    color:$primary;
    width:20px;
    height:20px
}
.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.ml-3 {
  margin-left: 1rem !important;
}

.ml-4 {
  margin-left: 1.5rem !important;
}

.ml-5 {
  margin-left: 3rem !important;
}
.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-3 {
  margin-right: 1rem !important;
}

.mr-4 {
  margin-right: 1.5rem !important;
}

.mr-5 {
  margin-right: 3rem !important;
}
.pointer{
    cursor:pointer
}
.badge{
	font-size:16px;
	font-weight:500px;
	text-transform: uppercase;
}

.badge-success{
  color:#219653;

}
.badge-warning{
	color:$brand-warning;
}
.badge-danger{
  color:$brand-danger;
}
.table td{
      word-break: break-word;
	  vertical-align: middle;
	  font-weight: 500;
}


.table-action-td a i{
	font-size: 20px;
}

.box-image{
  border: 1px solid #c5c5c5;
  padding:10px;
  position:relative;
  .remove{
    width:14px;
    height:14px;
    color: $danger;
    cursor:pointer;
    position:absolute;
    right:0;
    top:0;
  
  }
}
.color-primary{
  color:$primary
}
.color-success{
  color:$brand-success
}
.color-warning{
  color:$brand-warning
}
.btn-small{
	padding: 2px 10px !important;
    line-height: 23px !important;
}
.spinner-small{
	width: 1rem;
    height: 1rem
}
.text-left{
	text-align:left
}

.table-action-td{
	padding: 10px 5px !important; 
}
.border-right-5{
	border-right: 2px solid #dee2e6 !important;
}
.table-campaigns{
	th, td{
		vertical-align:middle
	}
}

.table-campaigns th
{

	background: #fff;
	vertical-align: bottom;
}

.table-campaigns tr:not(.distance)
{
	
}


.table.table-campaigns td:last-child
{
	border-right: 2px solid #dee2e6;
}

.table-campaigns tr.distance
{
	line-height: 0px;
	border: 0px !important;
}

.table tr.distance td
{
	padding: 0px !important;
	height: 15px;
	line-height: 0px;
	border: 0px !important;
	border-top: 2px solid #dee2e6 !important;
}


.close{
	position: absolute;
    right: 12px;
    top: 16px;
    font-size: 16px;
}
.bootbox-close-button{

	box-sizing: content-box;
	width: 0.5em;
	height: 0.5em;
	padding: 0.25em 0.25em;
	color: transparent;
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
	border: 0;
	border-radius: 0.25rem;
	opacity: 0.2;
}
.list-domain{
	padding: 3px 10px;
	cursor:pointer;
	margin: 10px 0;
}
.list-domain.selected{
	background-color: #e0ebf4;
	font-weight:bold;
	position: relative;
	border-radius: 10px;
}

/* .list-domain.selected:after
{
	content: "";
    display: inline-block;
    border-top: 15px solid transparent;
    border-right: 15px solid #e0ebf4;
    position: absolute;
    top: -1px;
    right: -28px;
    transform: rotate(180deg);
    border-radius: 4px;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
} */

span#counter
{
	font-weight: bold;
}

.key-name
{
	float: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 150px;
	min-width: 150px;
}

.icon-website
{
	padding-left: 18px !important;
	position: relative;
}

.pages-box.icon-website.selected:after
{
	content: "";
    position: absolute;
    right: 8px;
    top: calc(50% - 11px);
    height: 28px;
    width: 25px;

}


.navigate{
    width: 320px;
    margin: 0 auto;
    text-align: center;
}



.pages-box{

	cursor:pointer
}

.pages-box-image
{
	border: 2px solid #C2D8FF;
	padding:10px;
	border-radius: 10px;
	min-height:900px;
}

.pages-box-image div:last-child .box-kpi.mb-2
{
	margin-bottom: 0px !important;
}

.pages-box.selected{
	background: #c2d8ff;
}
.box-kpi{
	background: #f0f0f0!important;
	padding:10px;
	border-radius: 10px;
}
.box-kpi img
{
	display: block;
}
.image-responsive{
	max-width: 100%
}
.progress-session-domain{
	background: #c4cdd6;
	height: 7px;
	.progress-bar{
		background-color: #83c288;
	}
}
.loading{
	position:absolute; 
	background:#fff; 
	width:100%; 
	height:100%;
	z-index:99999;
	left:0;
	min-height:500px
	
}
.container-screen{
	position:relative;
	height:80%
}
.loading-box-session{
	top: 200px;
	position:relative
}
.primary{
	color: $primary
}
.cell-border{
	border-right: 1px solid #dee2e6 !important;
}
.option_kpi{
	
}
.float-right{
	float:right
}
.alert{
	padding-top: 0.6rem !important;
	padding-bottom: 0.6rem !important;
}
.file-container{
	padding: 5px;
    background: #f0f0f0;
	font-size: 12px;
}

.family-container{
	padding:10px;
	padding-top: 10px;
	padding-bottom: 15px;
	background-color: #f0f0f0;
	border-radius: 5px;
}
.badge-custom{
	padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
	& a{
		color: white !important;
	}
}
.cropper {
	height: 500px;
	width: 100%;
	background: #ddd;
  }
  .upload-image-cropper {
	height: 500px;
	width: 100%;
	border: 1px solid #f0f0f0;
  }
  .button-wrapper{
	display:flex;
	align-items:center;
	justify-content:center
  }
  .box-thumbs{
	padding: 20px;
	background: #edeff0;
	
  }
  .box-thumbs img{
	max-width: 95%;
  }

  #reports-list .table-action-td{
	width: 5%;
	text-align: center;
  }
  .clearfix{
	clear: both;
  }

  .bootbox-body{
	font-size: 18px;
  }

  .copy-footer{
	font-size:18px;
	color: #fff;
  }

  .modal-footer{
	border:none;
  }

  .mode-content{
	border-radius: 10px;
  }

  .sidebar-menu li a.sub-item-left{
	font-size:16px;
	color:#0050FF;
  }

  .table-action-td a{
	color:#0050FF!important;
  }

  .table-action-td a.btn-primary{
	color:#fff!important;
  }
  

  @media screen and(max-width:1700px){
	.key-name-domain{
		float:none
	}
  }

  .center-table-row{
	table td, table th{
		vertical-align: middle;
	}
  }

  .ck-editor{
	color: #212529 !important
  }