@charset "utf-8";
/* CSS Document */


body {
    background-color:#fff;
    max-width:100%;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}

:root {
  --white: #e8e9ed;
  --gray: #cac9e1;
  --green: #01b701;
  --pink: #d40000;
}

ol {
  list-style: none;
  padding: 0;
}

label {
  cursor: pointer;
}

.showcontent [type="checkbox"] {
  position: absolute;
  left: -9999px;
}

.switches {
  width: 100%;
  margin: 5px auto 20px;
  border: 1px solid #d8d8d8;
} 

.switches li {
    padding: 15px 0;
    border-bottom: 1px solid #d8d8d8;
    display: grid;
    grid-template-columns: 75% 25%;
    grid-template-areas: "cookieskind checkbox"
                         "explanation explanation";
    background-color: transparent;
} 

.switches li:first-child {
} 

.switches li:last-child {
    border-bottom: 0;
} 

.switches li:nth-child(even) {
} 

.switches .swithtext {
  grid-area: cookieskind;
  display: flex;
  align-items: center;
  color: #696969;
  font-size: 12px;
  font-weight: bold;
  padding-left: 20px;
  padding-right: 15px;
  cursor: pointer;
}

.switches .swithtext em {
  display: block;
  margin-right: 15px;
  margin-top: -1px;
  font-size: 20px;
  font-weight: normal;
  font-style: normal !important;
  cursor: pointer;
  color: #000;
  z-index: -1;
}

.switches .swithtext em.hiddentext {
  margin-top: -5px;
  font-size: 26px;
}

.switches label {
  grid-area: checkbox;
  display: flex;
  /*flex-direction: row-reverse;*/
  align-items: center;
  justify-content: space-between;
  margin: 0 20px 0 0;
  margin-bottom: 0;
  justify-self: end
}

.switches span:last-child {
  position: relative;
  width: 50px;
  height: 26px;
  border-radius: 15px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.4);
  background: var(--gray);
  transition: all 0.3s;
}

.switches span:last-child::before,
.switches span:last-child::after {
  content: "";
  position: absolute;
}

.switches span:last-child::before {
  left: 1px;
  top: 1px;
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  z-index: 1;
  transition: transform 0.3s;
}

.switches span:last-child::after {
  top: 50%;
  right: 8px;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background: url(../images/uncheck-switcher.svg);
  background-size: 12px 12px;
}

.switches [type="checkbox"]:checked + label span:last-child {
  background: var(--green);
}

.switches [type="checkbox"]:checked + label span:last-child::before {
  transform: translateX(24px);
}

.switches [type="checkbox"]:checked + label span:last-child::after {
  width: 14px;
  height: 14px;
  left: 8px;
  background-image: url(../images/checkmark-switcher.svg);
  background-size: 14px 14px;
}

.switches .swithtextshowed {
  grid-area: explanation;
  font-size: 12px;
  color: #696969;
  line-height:  1.8;
  padding: 15px 20px;
  margin-top: 20px;
  margin-bottom: -15px;
  background-color: #eeeeee;
}

.overlay {
  background: rgba(0,0,0,.7);
  padding: 20px 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  max-height: 100%;
  overflow: hidden;
}
.overlaypartners {
  background: rgba(0,0,0,0);
}
.overlayshows {
  display: flex;
}
.overlay .modalinfo {
  width: 100%;
  max-width: 500px;
  max-height: 100%;
  overflow-y: auto;
  background-color: #ffffff;
  background-position: center;
  background-size: cover;
  padding:30px 50px 35px; 
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
  position: relative;
  z-index: -2;
  scrollbar-color: #c9c7c7 #e5e5e5 !important;
  scrollbar-width: thin !important;
  text-align: left;
}
.overlay .modalinfo::-webkit-scrollbar {
  width: 10px;
}

.overlay .modalinfo::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #cacaca; 
  border-radius: 10px;
}
 
.overlay .modalinfo::-webkit-scrollbar-thumb {
  background: #d2d2d2; 
  border-radius: 10px;
}

.overlay .modalinfo::-webkit-scrollbar-thumb:hover {
  background: #c9c7c7; 
}

.overlay .modalinfo::-webkit-scrollbar {
  width: 10px;
}

.overlay .modalinfo .closex {
  height: 45px;
  text-align:  right;
  background-color: #ffffff;
  position: fixed;
  width: 400px;
  margin-top: -30px;
}
.overlay .modalinfo .closex img {
  position: absolute;
  right: 0px;
  top: 15px;
  height: 15px;
  width: auto;
  cursor: pointer;
}
.overlay .modalinfo .modaltextpartner {
  padding-top: 30px;
}

.overlay .modalinfo .modaltext h4 {
  padding: 15px 0;
}

.overlay .modalinfo .modaltext p.info {
  color: #696969;
  font-size: 12px;
  line-height: 1.7;
  padding: 0 0 10px;
  margin: 0;
  text-justify: inter-word;
}

.overlay .modalinfo .modaltext p.partnerslink  {
  margin-top: -10px;
}

.overlay .modalinfo .modaltext .modaltitle {
  text-align: center;
  color: #696969;
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  padding-bottom: 15px;
}
.overlay .modalinfo .modaltext .modaltitleleft {
  text-align: center;
  padding-top: 7px;
  padding-bottom: 18px;
  line-height: 1.4;
}
.overlay .modalinfo .modaltext button {
  width: 100%;
  max-height: none !important;
  border: none;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  color: #ffffff;
  border-radius: 0 !important;
  background-image: none !important;
  background-color: var(--pink);
}

.overlay .modalinfo .modaltext .acceptallbutton {
  background-image: none;
  margin-top: 10px;
  margin-bottom: 30px;
}

.overlay .modalinfo .modaltext .selectionbutton {
  margin-bottom: 15px;
}

.overlay .modalinfo .modaltext .rejectallbutton {
  background-color: var(--gray);
}

.overlay .modalinfo .modaltext .cookiesset {
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  padding: 0;
  margin-top: -10px;
  margin-bottom: -5px;
}

.overlay .modalinfo .modaltext p a,
.overlay .modalinfo .modaltext .cookiesset a {
  color: #d40000;
  text-decoration: none;
  cursor: pointer;
}

.overlay .modalinfo .modaltext p a:hover,
.overlay .modalinfo .modaltext .cookiesset a:hover {
  text-decoration: underline;
}

.overlay .modalinfo .modaltext p a.firscookielink,
.overlay .modalinfo .modaltext .cookiesset a.firscookielink {
  color: #696969;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
}

.overlay .modalinfo .modaltext p a.firscookielink:hover,
.overlay .modalinfo .modaltext .cookiesset a.firscookielink:hover {
  text-decoration: underline;
}

.overlay .modalinfo .modaltext p a.firscookielinksecond,
.overlay .modalinfo .modaltext .cookiesset a.firscookielinksecond {
  display: block;
  padding:  5px 0;
}

.overlay .modalinfo .modaltext p a.firscookielinksecond:first-child,
.overlay .modalinfo .modaltext .cookiesset a.firscookielinksecond:first-child {
  padding:  10px 0 5px;
}

.overlay .modalinfo .modaltext p a.firscookielinksecond:last-child,
.overlay .modalinfo .modaltext .cookiesset a.firscookielinksecond:last-child {
  padding:  5px 0 0;
}

.overlay .modalinfo .modaltext p a.partnerlink,
.overlay .modalinfo .modaltext .cookiesset a.partnerlink {
  color: #696969;
  font-weight: normal;
}

.overlay .modalinfo .modalwrapper .modaltextpartner [type="checkbox"] {
  height: 18px;
  width: 18px;
  margin: -2px 10px 0 0;
  border-radius: 0;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  appearance: checkbox !important;
  border: 1px solid #000000;
}

.overlay .modalinfo .modalwrapper .marketingcheckbox {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}

.overlay .modalinfo .modalwrapper .marketingcheckbox span {
  color: #696969;
  font-size: 13px;
  font-weight: bold;
}

.overlay .modalinfo .modalwrapper .modaltextpartner p {
  font-size: 12px;
  line-height: 1.6;
  padding-left: 28px;
  padding-bottom: 25px;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerlist {
  padding-left: 28px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerlist [type="checkbox"] {
    min-height: 15px;
    min-width: 15px;
    max-height: 15px;
    max-width: 15px;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerlist span {
  color: #696969;
  font-size: 12px;
  font-weight: bold;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerlist .partnername {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerlist .partnername em {
  display: block;
  margin-left: 10px;
  margin-top: -4px;
  font-size: 15px;
  max-height: 18px;
  max-width: 18px;
  min-height: 18px;
  min-width: 18px;
  border-radius: 50%;
  font-weight: normal;
  font-style: normal !important;
  cursor: pointer;
  color: #000;
  text-align: center;
  border: 1px solid #000;
  z-index: -1;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerlist .partnername em span {
  margin-top: -2px;
  margin-left: -1px;
  display: block;
  font-size: 15px !important;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerlist .partnername em span.addplus {
  margin-top: -2.5px;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerpoints {
  padding-left: 53px;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerpoints p {
  font-size: 12px;
  line-height: 1.6;
  padding-left: 0;
  padding-bottom: 0;
  color: #696969;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerpoints p a {
  word-break: break-all;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerpoints p:last-child {
  padding-bottom: 30px !important;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerpoints p.partnerpointstitle {
  font-weight: bold;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerpoints p.partnerpointscontent {
  padding-top: 5px;
  padding-bottom: 15px;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerpoints ul {
  list-style-type: circle;
  color:  #696969;
  font-size: 12px;
  padding-top: 5px;
  padding-left: 15px; 
  padding-bottom: 30px;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnerpoints ul li {
  padding: 3px 0;
  line-height: 1.6;
}

.overlay .modalinfo .modalwrapper .modaltextpartner .partnersubtext p {
  font-size: 12px;
  line-height: 1.6;
  margin-top: -15px;
  padding-left: 0;
  padding-bottom: 15px;
  color: #696969;
  padding-left: 53px;
}

.overlay .modalinfo .modalwrapper .buttonconfirmpartner {
  margin-top: 10px;
  margin-bottom: 15px;
}

.overlay .modalinfo .modalwrapper .buttonrefusepartner {
  margin-bottom: -10px;
}

.overlay .modalinfo .modalwrapper .buttonrefusepartner button {
  background-color: var(--gray);
}

.overlay .modalinfo .modalwrapper .buttonconfirmpartner .selectionbuttonpartner {
  margin-bottom: 0;
}

.hideoverlay {
    display:  none;
}

.notshown {
  display: none;            
}

.shown {
  display: block;   
}

.wrap {
    height: 100%;
    min-height: 100%;
}


.lineheader {
    padding:0;
    background-color:#ffffff;
}

.lineheader .logo img {
    height: 60px;
    width: auto;
}

.containerwreapperheader {
    width: 100%;
    max-width:1340px;
    margin:0 auto;
    padding:5px 0;
    display: -webkit-box;      
    display: -moz-box;        
    display: -ms-flexbox;      
    display: -webkit-flex;     
    display: flex;             
    flex-direction:row;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -webkit-align-items: center;
}

.containerwreapperheader .contact {
    padding-top:0px;
    display:flex;
    justify-content: center;   
}

.containerwreapperheader .headercontact {
    text-align:center;
    color:#000000;
    font-size:26px;
    font-weight:bold;
    padding: 0;
    position:relative;
    align-self: center;
}

.lineuser .headercontact {
    text-align:center;
    color:#000000;
    font-size:26px;
    font-weight:bold;
    position:relative;
    align-self: center;
}

.headercontact #city {
    text-transform:uppercase;
    position:absolute;
    margin-left:0px;
    top:0;  
    background-color:#ffffff;
    padding:10px 0px 0 0;
    z-index:1000;
}

.containerwreapper {
    width: 100%;
    max-width:1340px;
    margin:0 auto;
}

.headercontact {
    text-align:center;
    color:#000000;
    font-size:24px;
    font-weight:bold;
    padding:0;
}

#city {
    text-transform:uppercase;
    white-space: nowrap;
}

.floatstart img {
    max-height:80px;
    width:auto;
    margin-left: -6px;
}

.containerwreapper {
    width: 100%;
    max-width:1340px;
    margin:0 auto;
}

.morefriends {
    display:none;
}

.containerwreappermiddle {
    min-height:calc(100% - 180px);
    height: calc(100% - 180px);
    background-color: #f1f1f1;
    width:100%;
    padding: 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.litleres {
    background-image: url(../images/mosaico.jpg);
    background-position:center center;
    background-repeat:repeat;
    min-height: 100%;
    height: 100%;
    width: 100%;
    max-width:1340px;
    margin: 0 auto;
    position: relative;
}

.infernallink {
    text-align:center;
    position:absolute;
    left:50%;
    transform: translateX(-50%);
    margin-top:263px;
}

.contentreg {
  min-width: 420px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contentreg .contentmiddle {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #b8b7b7;
    padding: 0px;
    border-radius: 25px 0 25px 0;
    -moz-box-shadow: 0 0 1px #000;
    -webkit-box-shadow: 0 0 1px#000;
    box-shadow: 0 0 5px #000;
}

.contentreg .contentmiddle .days {
    background: #d40000;
    font-size:19px;
    font-weight: 500;
    letter-spacing: 0.2;
    text-align:center;
    color:#fff;
    padding: 6px 5px 8px;
    margin-top:-1px;
    margin-right:-1px;
    margin-left:-1px;
    border-radius: 25px 0 0 0;
}

.contentreg .contentmiddle .days p {
    margin: 0;
}

.contentreg .contentmiddle .triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #d40000;
    margin:-5px auto 0 auto;
}

.contentreg .contentmiddle .registernow {
    color: #d40000;
    font-size: 20px;
    font-weight:bold;
    padding:1px 5px 0 5px;
    margin-bottom:-10px;
    text-align:center;
}

.contentreg .contentmiddle .reg {
    margin-top:-10px;
    padding: 15px 30px;
}

.contentreg .contentmiddle label {
    font-size: 16px;
    color: #000;
}

.contentreg .contentmiddle .form-group {
    margin-bottom: 20px;
}

.contentreg .contentmiddle .enlinea {
  display:inline-block;
  margin-bottom:10px;
}

.contentreg .contentmiddle .boton {
 text-align: center;
}

.contentreg .contentmiddle p.boton  {
    margin: 0;
}

.btn-danger {
    border-bottom: 3px solid #35850a;
}

.btn2 {
    display:inline-block;
    max-height: none;
    width:100%;
    padding:9px 12px 8px;
    margin-bottom:5px;
    font-size:19px;
    font-weight:700;
    line-height:1.42857143;
    text-align:center;
    white-space:nowrap;
    vertical-align:middle;
    -ms-touch-action:manipulation;
    touch-action:manipulation;
    cursor:pointer;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    border-radius:4px
}

.memberlogin {
    text-align: center;
    position:relative;
    margin-top: 10px;
}

.memberlogin a {
    color:#d40000;
    font-weight:700;
    font-size: 15px;
    text-decoration: underline;
}

.useronline {
    width:100%;
    background-color:#ffffff;
    text-align:center;
    padding:22px 10px 30px;
    margin-bottom:0px;
}

.useronline .lineuser {
    font-weight:bold;  
}

.useronline .contactfooter {
    display:none;   
}

.contactfooter {
    display: none;
}

@media only screen and (max-width: 510px) {  
    .overlay {
      background: rgba(0,0,0,.5);
        align-items: flex-end;
        padding: 15px;
    }
    .overlay .modalinfo {
        padding: 25px 35px 30px;
    }
    .overlay .modalinfo .closex {
        margin-top: -25px;
        width: calc(100% - 100px);
    }
} 


@media only screen and (max-height: 508px) {

    .wrap  {
        height: auto;
    }

    .containerwreappermiddle {
        height: auto;
    }

    .litleres {
        height: auto;
    }

    .contentreg {
      min-width: 400px;
      max-width: 400px;
      margin: 0 auto;
      position: relative;
      top: 0;
      left: 0;
      transform: translate(0, 0);
    }
}

@media only screen and (max-width:499px) {

.modalnew {
    position: fixed;
    top: 20px
}

.wrapperinfo .title {
    padding: 5px 10px;
    font-size:18px;
}

.wrapperinfo .wrappercontent {
    background-color:#c7665a;
    padding:5px;
}

.wrapperinfo .wrappercontent ul {
    background-color:#954c43;
    list-style-type: square;
    padding:10px 20px;
    color:white;
    border-radius:5px;
}

.wrapperinfo .wrappercontent ul li {
    padding:5px 0;
}

.wrapperinfotwo .title {
    padding: 5px 10px;
    font-size:18px;
}

.wrapperinfothree .title {
    padding: 5px 10px;
    font-size:18px;
}

}

.linefooter {
    width: 100%;
    max-width: 1340px;
    margin:0 auto;
    padding: 40px 0 40px;
}

.linefooter .linefooterfinal {
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
}

.linefooter .linefooterfinal .lineone {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 48%;
}

.linefooter .linefooterfinal .lineone .youchoice {
    color:#76a5f5;
    font-size:20px;
}

.linefooter .linefooterfinal .lineone .link a {
    color:#76a5f5;
    text-decoration:underline;
}

.linefooter .linefooterfinal .lineone .link a:hover {
    text-decoration:none;
}

.linefooter .linefooterfinal .linetwo {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 48%;
}

.linefooter .linefooterfinal .linetwo .youchoice {
    color:#76a5f5;
    font-size:20px;
}

.linefooter .linefooterfinal .linetwo .link a {
    color:#76a5f5;
    text-decoration:underline;
}

.linefooter .linefooterfinal .linetwo .link a:hover {
    text-decoration:none;
}

@media only screen and (max-width: 1340px) {
    .lineheader .logo img {
        margin-right: 0px;
    }
    .litleres {
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
    }
    .floatstart img {
        margin-left: 0px;
    }
    .linefooter {
        padding: 20px 20px 40px;
    }
}

@media only screen and (max-width: 1100px) {

    .containerwreapperheader {
        width:100%;
        padding:5px 10px;
        margin:0;
    }

    .containerwreapper {
        width:100%;
        padding:0 10px;
    }
}

@media only screen and (max-width: 1000px) {

.containerwreapperheader .headercontact {
    white-space:nowrap;
}

.linefooter {
    width:100%;
}

}

@media only screen and (max-width: 980px) {

.containerwreapperheader .headercontact {
    white-space:nowrap;
}

}

@media only screen and (max-width: 950px) {

.lineheader {
    padding: 5px 0;
}

 .containerwreapperheader {
    display:block;
    text-align:center;
    margin:0 auto;
}   

.lineheader .logo img{
    max-height:50px;
    margin-right: 0px;
}  

.floatstart {
    display:none;
} 

.morefriends {
    display:block;
    font-size:24px;
    font-weight: normal;
    align-self: flex-end;
    margin-bottom:-12px;
    margin-top:18px;
}

.containerwreapperheader .headercontact {
    margin-left:0px;
}

.containerwreapperheader .contact {
    display: none;
}

.containerwreapperheader .headercontact {
    font-size:22px;
}

.containerwreappermiddle {
    min-height:calc(100% - 160px);
}

.contentreg {
  min-width: 375px;
  margin: 0 auto;
}

.memberlogin a {
    font-size:13px;
}

.useronline {
    display:none;
}

.contactfooter {
    display: block;
    width:100%;
    background-color:#ffffff;
    text-align:center;
    padding:22px 10px 30px;
    margin-bottom:0px;
}

.contactfooter  .footercontact {
    font-weight: bold;
    font-size:22px;
}

.linefooter .linefooterfinal {
    flex-direction: column;
}

.linefooter .linefooterfinal .lineone {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    padding-bottom:30px;
}

.linefooter .linefooterfinal .lineone .youchoice {
    color:#76a5f5;
    font-size:20px;
}

.linefooter .linefooterfinal .lineone .link a {
    color:#76a5f5;
    text-decoration:underline;
}

.linefooter .linefooterfinal .lineone .link a:hover {
    text-decoration:none;
}

.linefooter .linefooterfinal .linetwo {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
}

.linefooter .linefooterfinal .linetwo .youchoice {
    color:#76a5f5;
    font-size:20px;
}

.linefooter .linefooterfinal .linetwo .link a {
    color:#76a5f5;
    text-decoration:underline;
}

}

@media only screen and (max-width: 550px) {

.wrap {
    background-image: url(../images/mosaicomobile.jpg);
    background-size: cover;
    background-position: center 0;
    min-height: 100%;
    height:100%;
    position: relative;
}

.lineheader {
    padding:0 10px 0px;
    display:flex;
    height:65px;
    background-color:rgba(255, 255, 255, .6);
    width: 100%;
    align-items: center;
    z-index: 1000;
}  

.containerwreapperheader .logo  {
    margin:0;
    padding:0;
}

.containerwreapperheader .logo img {
    padding-top: 0; 
    height: 45px;
    width: auto;
}    

.containerwreapperheader .headercontact {
    font-size:20px;
}

.litleres {
    background-image: none;
    min-height: 100%;
    height: 100%;
    position: inherit;
} 

.contentreg .contentmiddle .reg {
    margin-top:-10px;
    padding: 10px 25px;
}

.containerwreappermiddle {
    background-color: transparent;
    min-height: calc(100% - 110px);
    height: calc(100% - 110px);
    border-top: 0;
    border-bottom: 0;
} 

.morefriends {
    font-size:22px;
} 

.contactfooter {
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    height: 45px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactfooter .footercontact {
    font-size: 18px;
    font-weight:  bold;
}

.linefooter {
        padding: 30px 20px 40px;
    }

}

@media only screen and (max-width: 550px) and (max-height: 440px) {
    .wrap {
        min-height: 452px;
        height: 452px;
    }
    .containerwreappermiddle {
        min-height: 335px;
        height: 335px;
        overflow: scroll;
    }
    .contentreg {
        max-width: 80%;
        position: relative;
        min-height: 335px;
        height: 335px;
        margin-top: 0;
    }
} 

@media only screen and (max-width: 450px) {    

.memberlogin {
    margin-bottom: -15px
}

.useronline {
    padding:20px 10px 30px;
}

#number {
    font-size:20px; 
}

.contentreg .contentmiddle .reg {
    padding: 10px 20px 15px;
}

.contentreg {
  min-width: 80%;
  max-width: 80%;
}

.morefriends {
    font-size:20px;
    white-space: nowrap
} 

.contentreg .contentmiddle .days {
    padding: 7px 5px;
} 

.contentreg .contentmiddle label {
    font-size: 15px;
}

}

@media only screen and (max-width: 450px) and (max-height: 440px) {
    .wrap {
        min-height: 439px;
        height: 439px;
    }
    .containerwreappermiddle {
        min-height: 322px;
        height: 322px;
        overflow: scroll;
    }
    .contentreg {
        max-width: 80%;
        position: relative;
        min-height: 322px;
        height: 322px;
        margin-top: 0;
    }
}  

@media only screen and (max-width: 410px) {
   .overlay .modalinfo {
      padding: 20px 25px 25px;
  }
  .overlay .modalinfo .closex {
      margin-top: -20px;
      width: calc(100% - 80px);
  }   

}

@media only screen and (max-width: 400px) {

.btn2 {
    font-size:19px;
}   

.contentreg {
    max-width: 85%;
    min-width: 85%;
    margin: 0 auto;
} 

.useronline .contactfooter {
    margin-top:-10px;
}

}


@media only screen and (max-width: 380px) { 
    .switches .swithtext {
      padding-left: 15px;
    }
    .switches label {
      margin: 0 15px 0 0;
    }
    .switches .swithtextshowed {
      padding: 15px;
    }
}

@media only screen and (max-width: 360px) { 

 .switches .swithtext {
    padding-left: 10px;
  }
  .switches label {
    margin: 0 10px 0 0;
  }
  .overlay .modalinfo .modaltext .selectionbutton {
      margin-bottom: 10px;
      font-size: 15px;
      padding: 8px;
  }

  .overlay .modalinfo .modalwrapper .buttonrefusepartner {
    margin-bottom: -5px;
  }

  .overlay .modalinfo .modaltext .rejectallbutton {
      font-size: 15px;
      padding: 8px;
      margin-bottom: -5px;
  }

  .overlay .modalinfo .modaltext .acceptallbutton {
      font-size: 15px;
      padding: 8px;
  }  

.lineheader {
    height:60px;
}  

.containerwreapperheader .logo img {
    height: 40px;
} 

.containerwreappermiddle {
    min-height: calc(100% - 105px);
    height: calc(100% - 105px);
} 

.contactfooter .footercontact  {
    font-size: 17px;
}

}  

@media only screen and (max-width: 340px) {

.contactfooter .footercontact  {
    font-size: 16px;
}

}