@font-face {
  font-family: Satoshi;
  src: url("Satoshi-Regular.otf");
}

@font-face {
  font-family: Satoshi-Medium;
  src: url("Satoshi-Medium.otf");
}

@font-face {
  font-family: Satoshi-Black;
  src: url("Satoshi-Black.otf");
}

* {
    margin: 0;
}

b {
    font-family: Satoshi-Medium;
    font-weight: bold;
}

body {
    font-family: Satoshi;
}

section {
    width: 100%;
    box-sizing: border-box;
}

h1 {
    font-size: 64px;
    letter-spacing: 1px;
}

h2 {
    font-size: 48px;
    line-height: 1.3;
}

p {
    font-size: 30px;
}

header {
  width: 100%;
  height: 82px;
}

nav {
    width: 100%;
    position: fixed;
    height: 82px;
    align-items: flex-end;
    display: flex;
    background-color: white;
    z-index: 5;
    margin: 0 auto;
    -webkit-transition: all 0.4s ease-in;
    -moz-transition: all 0.4s ease-in;
    -o-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    gap: 14.5%;
}

nav button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: black;
    padding: 0;
}

nav h1 {
    display: none;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 30px;
    height: 3.5px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: black;
}

.button-container {
    display: flex;
    gap: 23%;
/*
    margin-left: -7%;
*/
}

.logo {
    width: 60px;
    margin: auto 0;
}

.nav-left, .nav-right {
  display: flex;
}

.nav-left {
  gap: 49px;
}

nav a {
  text-decoration: none;
  padding-left: 1px;
  padding-right: 1px;
  padding-bottom: 8px;
  white-space: nowrap;
}

.nav-left a {
    border-bottom: 5px solid white;
}

.nav-left a.selected {
  border-bottom: 5px solid black;
}

.nav-left a:hover {
    border-bottom: 5px solid #C1A0DB;
}

.content {
    width: 1434px;
    margin: 0 auto;
}

.sec1 h1 {
    line-height: 3.8;
    margin-left: 13.5%;
}

.highlight {
  color: #C1A0DB;
  font-weight: bold;
}

.start {
    display: flex;
    flex-direction: row;
}

.start-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.start-right {
    display: flex;
}

.subtitle {
    font-family: Satoshi-Medium;
    font-weight: 1000;
    letter-spacing: 1px;
    font-size: 30px;
    line-height: 1.3;
    margin-left: 13.5%;
    width: 45%;
}

.cover {
    width: 794px;
    height: 925px;
    margin-top: -36px;
    margin-bottom: 22px;
    margin-right: 10.6%;
    float: right;
}

.introduction {
    width: 75%;
    clear: both;
    margin-left: 13.5%;
}

.introduction p {
    line-height: 1.3;
    margin-bottom: 11px;
}

.post-introduction {
    width: 75%;
    margin-left: 13.5%;
}


.benefits-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-left: 13.5%;
    margin-top: 20px;
    gap: 15px;
}

.benefit {
    font-size: 30px;
    display: flex;
    align-items: flex-start;
    margin-left: 0;
    gap: 10px;
}

.plus-container {
    display: flex;
    height: 40.5px;
}

.plus {
    height: 24px;
    width: 24px;
    margin: auto;
}

hr {
    height: 3px;
    color: lightgray;
    background-color: lightgray;
    width: 73.5%;
    margin: 86px auto auto auto;
    border: 0;
}

#methode, #buch, #software, #beratung, #denkimpulse, #downloads, #ueber-mich {
    margin-top: 7px;
    margin-bottom: 86px;
    min-height: 1px;
}

.methode-text {
    width: 1070px;
    margin: 0 auto;
}

.methode-text h2 {
    margin-bottom: 43px;
    margin-left: 402px;
}

.methode-text2 {
    margin-bottom: 30px;
}

.methode-text2 {
    clear: both;
}

.methode p {
    line-height: 1.33;
}

.methode-illustration {
    height: 384px;
    float: left;
    margin-top: -164px;
    margin-right: 30px;
    margin-bottom: 85px;
}

.phasen {
    margin-top: 60px;
    width: 885px;
    margin-left: auto;
    margin-right: auto;
}

.collapsible {
    border-bottom: solid 1px;
    margin-top: 2%;
    margin-bottom: 9px;
    width: 885px;
}

.collapsible-button {
    background-color: white;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.collapsible-button:hover {
    color: #C1A0DB;
}

.collapsible-arrow {
  height: 20px;
  transition: transform 0.5s ease;
  transform-origin: center;
  transform: rotate(0deg);
}

.collapsible-button.collapsible-active .collapsible-arrow {
  transform: rotate(180deg);
}

.collapsible-content {
    padding: 15px;
    display: none;
    overflow: hidden;
}

.collapsible-content p {
    font-size: 24px;
    margin-bottom: 9px;
}

.collapsible-content li {
    font-size: 24px;
}

.collapsible-button.collapsible-active .collapsible-arrow {
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}

.phasen hr {
    background-color: gray;
    width: 64%;
    height: 1px;
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 1%;
}

.buch, .software, .beratung, .denkimpulse, .downloads, .ueber-mich {
    padding-left: 13.5%;
}

.title {
    border-bottom: solid 9px black;
    padding: 0 8px 15px 8px;
    display: inline-block;
    letter-spacing: 2px;
    margin-bottom: 62px;
}

.buch-cover {
    height: 526px;
    display: block;
}

.buch-container {
    width: 83%;
    display: flex;
    gap: 62px;
    align-items: center;
    flex-direction: row;
}

.buch-description {
    margin-bottom: 49px;
    line-height: 1.3;
}

.buy-button {
    border: solid 5px black;
    border-radius: 20px;
    width: 248px;
    cursor: pointer;
    background-color: white;
    margin-left: 12.5%;
    transition: transform 0.3s ease-in;
    -moz-transition: transform 0.3s ease-in;
    -o-transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
}

.buy-button img {
  padding-top: 5px;
}

.amazon-logo {
    height: 38px;
}

.springer-logo {
    height: 48px;
}

.buy-button p {
    font-size: 15px;
    line-height: 1.3;
    color: #868686
}

.buy-button:hover {
    transform: scale(1.075); 
}

.beschreibung {
    margin-top: 50px;
    width: 80%;
    clear: both;
}

.beschreibung p, .beschreibung li {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.software-img-container {
    width: 100%;
    margin-left: -7.5%;
}

.software-img {
    margin: 4.6% auto;
    display: block;
    height: 475px;
}

.software-introduction {
    width: 64%;
    margin-left: 14.5%;
    margin-top: 37px;
}

.software-text p, .software-text li {
    font-size: 24px;
    width: 90%;
}

.beratung-introduction {
    margin-top: 60px;
    margin-left: -8%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.beratung-introduction-par1 {
    width: 48%;
}

.beratung-introduction-par2 {
    width: 90%;
}

.beratung-img {
    height: 475px;
    position: absolute;
    margin-left: 246px;
    margin-top: 20px;
}

.führen-text {
    margin-top: 86px;
    margin-left: 7.5%;
    margin-bottom: 68px;
    width: 70%;
}

.führen-text h2 {
    margin-bottom: 48px;
}

.führen-text p {
    line-height: 1.3;
}

.beratung-checkmarks {
    font-size: 20px;
    margin-left: 7.5%;
    display: flex;
    flex-direction: column;
}

.software-checkmarks-container {
    font-size: 20px;
    margin-top: 64px;
    margin-left: 15.7%;
    margin-bottom: 68px;
}

.software-checkmarks {
    display: flex;
    flex-direction: column;
    gap: 41px;
    margin-top: 23px;
}

.software .link-container {
    margin-top: 75px;
    margin-left: -6.5%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.beratung-checkmarks-unit, .software-checkmarks-unit {
    display: flex;
    align-items: center;
    width: 85%;
    gap: 26px;
}

.checkmark {
    vertical-align: middle;
    height: 47px;
    width: 47px;
}

.beratung-checkmarks-unit span, .software-checkmarks-unit span {
    line-height: 1.5;
}

.beratung-checkmarks hr {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 84.5%;
    margin-left: 0;
}

.beratung-line {
    width: 42.5%;
    margin-left: 21.75%;
    margin-bottom: 112px;
    margin-top: 75px;
}

.verkaufen-heading {
   margin-left: 6.25%; 
}

.verkaufen-img {
    height: 607px;
    display: block;
    position: absolute;
    margin-left: -408px;
    margin-top: 38px;
}

.verkaufen-container {
    width: 80%;
    margin-bottom: 44px;
    margin-left: 15.5%;
}

.verkaufen-text-container {
    padding: 105px 0 60px 0;
    margin-left: 74px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    width: 81%;
    gap: 25px;
}

.verkaufen-text2 {
    margin-left: 23%; 
    width: 80%;
}

.verkaufen-checkmarks {
    margin-left: -9%;
    display: flex;
    flex-direction: column;
}

.learn-more {
    width: 34%;
    margin: 18% auto 0 auto;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.learn-more img {
    margin-right: 3%;
    display: flex;
    margin-top: 6px;
}

.learn-more span {
    display: flex;
}

.denkimpulse-text {
    width: 44%;
    float: left;
    line-height: 1.3;
}

.denkimpulse img {
    height: 569px;
    margin-top: -217px;
    margin-left: -12.5%;
}

.link-container {
    text-align: center;
    margin-top: 149px;
    margin-left: -13.5%;
}

.link {
    display: flex;
    justify-content: center;
}

.link a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 47px;
}

.link span {
    border-bottom: solid 2px black;
    padding-bottom: 2px;
    display: flex;
}

.link-icon {
    display: flex;
    height: 42px;
    width: 42px;
}

.link a b:hover {
    font-family: Satoshi-Black;
    font-weight: normal;
}

.downloads .title, .ueber-mich .title {
    margin-bottom: 93px;
}

.downloads-text {
    width: 80%;
}

.downloads img {
    display: block;
    margin-left: 31.5%;
    margin-top: 40px;
    width: 312px;
}

.downloads .link-container {
    margin-top: 48px;
}

.ueber-mich p {
    font-size: 20px;
}

.ueber-mich-container {
    margin-bottom: 25px;
}

.ueber-mich-text {
    float: left;
    width: 56%;
    margin-bottom: 60px;
}

.ueber-mich-text p {
    margin-bottom: 20px;
}

.portrait {
    height: 340px;
    margin-top: -46px;
    margin-left: 3.25%;
}

.mein-weg {
    font-size: 20px;
    margin-bottom: 60px;
    clear: both;
}

.mein-weg li {
    margin-top: 5px;
    margin-bottom: 2px;
}

.ueber-mich-text2 {
    width: 76%;
}

.ueber-mich .link-container {
    margin-top: 120px;
    margin-left: -22.5%;
}

.rezensionen-container {
    display: flex;
    justify-content: center;
    gap: 5.5%;
}

.rezension {
    width: 46.3%;
    float: left;
    margin-top: 93px;
}

.rezensionen h2 {
    font-size: 30px;
}

.rezensionen h3 {
    font-size: 20px;
}

.rezension-img-container {
    display: flex;
    justify-content: center;
    margin-bottom: 37px;
}

.rezension p {
    font-size: 16px !important;
    line-height: 1.75;
}

.kunden-container {
    margin-top: 46px;
    margin-left: 2.25%;
    display: flex;
    justify-content: flex-start;
    gap: 15%;
}

.kunde {
    opacity: 0.5;
}

.kunde:hover {
    opacity: 1;
}

.rezensionen {
    margin-top: 93px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.rezensionen hr {
    margin-bottom: 86px;
}


footer {
    margin-top: 100px;
    background-color: #f0f0f0;
    font-size: 16px;
    line-height: 1.8;
    box-sizing: border-box;
}

.footer-container {
    width: 1434px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 19px;
    padding-bottom: 19px;
    box-sizing: border-box;
}

footer p {
    margin: 0;
    font-size: 16px;
}

footer a {
    text-decoration: none;
    color: black;
}

footer a:hover {
    text-decoration: underline;
}

.footer-left, .footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-left {
    margin-left: 10%;
}

.footer-right {
    text-align: right;
    margin-right: 10%;
}

/* Animation */

.reveal-text {
    position: relative;
    transform: translateY(15%);
    opacity: 0;
    -webkit-transition: opacity 1.25s ease-in-out, transform 1.25s ease-in-out;
    -moz-transition: opacity 1.25s ease-in-out, transform 1.25s ease-in-out;
    -o-transition: opacity 1.25s ease-in-out, transform 1.25s ease-in-out;
    transition: opacity 1.25s ease-in-out, transform 1.25s ease-in-out;
}

.reveal-text.active {
    transform: translateY(0);
    opacity: 1;
}

.plopup {
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out, transform 0.75s ease-in-out;
    -moz-transition: opacity 1s ease-in-out, transform 0.75s ease-in-out;
    -o-transition: opacity 1s ease-in-out, transform 0.75s ease-in-out;
    transition: opacity 1s ease-in-out, transform 0.75s ease-in-out;
}

.plopup.active {
    opacity: 1;
}

@media(max-width: 1434px) {
    .content {
        width: 100%;
    }

    p {
        font-size: 26px;
    }

    p.link {
        width: 22px;
    }

    .title {
        font-size: 48px;
        padding: 0 4px 7px 4px;
        margin-bottom: 48px;        
    }

    .footer-container {
        width: 100%;
    }

    .subtitle {
        width: 646px;
    }

    .methode-text h2 {
        font-size: 36px;
    }

    .collapsible-content p {
        font-size: 20px;
    }

    .buch, .software, .beratung, .denkimpulse, .downloads, .ueber-mich {
        width: 90%;
        padding-left: 6.5%;
    }

    .buch-container {
        width: 100%;
    }

    .beschreibung p, .beschreibung li, .software-text p, .software-text li {
        font-size: 20px;
    }

    p.link {
        width: 100%;
    }

    .beratung-img {
        display: block;
        margin: 0 auto;
        position: static;
        height: 390px;
    }

    .beratung-introduction {
        margin-left: auto;
    }

    .beratung-introduction-par1, .beratung-introduction-par2 {
        width: 60%;
        margin: 0 auto;
    }

    .führen-text {
        margin-left: auto;
        margin-right: auto;
    }

    .führen-text h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .verkaufen-container {
        margin-left: 28.5%;
    }
}

@media (max-width: 1350px) {
    .button-container {
        gap: 20%;
    }

    .nav-left {
        gap: 30px;
        width: auto;
    }

    .cover {
        width:58%;
        height: auto;
        margin-right: 5%;
    }
}

@media (max-width: 1250px) {
    .methode-text h2 {
        margin-left: 0;
        text-align: center;
    }

    .methode-illustration {
        margin-bottom: 0;
        margin-top: -25px;
        height: 325px;
    }

    .methode-text {
        width: 85%;
    }

    .methode-text-img-container {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .buch-container {
        flex-direction: column;
        gap: 20px;
    }

    .buch-cover {
        height: 430px;
    }

    .buch-description {
        width: 62%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 38px;
    }

    .buy-button {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .buy-button {
        font-size: 14px;
        width: 216px;
        border-radius: 15px;
    }

    .amazon-logo {
        height: 32px;
    }

    .beschreibung {
        width: 90%;
    }
}

@media (max-width: 1100px) {
    header {
        height: 170px;
    }

    .logo {
        display: none;
    }

    .hamburger-container {
        position: absolute;
        right: 0;
        z-index: 12;
        display: flex;
        width: 100px;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        height: 100%;
        background-color: white;
        padding: 18px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    nav {
        display: block;
        width: 100%;
        margin: 0;
        padding-top: 26px;
    }

    .responsive-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 66px;
    }

    nav h1 {
        display: block;
        font-size: 30px;
        line-height: 2;
        margin-left: 4%;
    }

    .sec1 h1 {
        display: none;
    }

    .nav-left a, .nav-left a.selected, .nav-left a:hover {
        border: none;
    }

    nav a {
        width: 100%;
        padding-bottom: 0;
    }

    nav button {
        width: 100%;
        padding-top: 10.5px;
        padding-bottom: 10.5px;
        font-size: 16px;
        background-color: white;
    }

    nav button:hover {
        background-color: #E9E9E9;
    }

    .button-container {
        visibility: hidden;
        opacity: 0;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 11;
        -webkit-transition: all 0.4s ease-in;
        -moz-transition: all 0.4s ease-in;
        -o-transition: all 0.4s ease-in;
        transition: all 0.4s ease-in;
        box-shadow:
            0 5px 2px rgba(0, 0, 0, 0.05),
            0 10px 4px rgba(0, 0, 0, 0.05),
            0 15px 8px rgba(0, 0, 0, 0.05),
            0 -5px 2px rgba(0, 0, 0, 0.05),
            0 -10px 4px rgba(0, 0, 0, 0.05),
            0 -15px 8px rgba(0, 0, 0, 0.05);
    }

    .nav-left {
        flex-direction: column;
        align-items:center;
        gap: 0;
        width: 100%;
    }

    .nav-right {
        width: 100%;
    }

    .button-container.active {
        opacity: 1;
        visibility: visible;
    }

    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .cover {
        margin: 0 auto;
        float: none;
        display: block;
    }

    .methode-text p {
        font-size: 28px;
    }

    .beratung-introduction-par1, .beratung-introduction-par2 {
        width: 90%;
    }
}

@media (max-width: 990px) {
    .introduction {
        margin: auto;
    }

    .post-introduction {
        display: none;
    }

    .benefits-container {
        margin-left: auto;
        margin-right: auto;
        width: 64%;
    }

    .methode-text p {
        font-size: 26px;
    }

    .phasen, .collapsible {
        width: 90%;
    }

    .führen-text {
        width: 90%;
    }
}

@media (max-width: 900px) {
    .subtitle {
        text-align: center;
        width: 450px;
    }

    .introduction {
        opacity: 1;
        transform: translateY(0);
        width: 92%;
    }

    p {
        font-size: 24px;
    }

    p.link {
        font-size: 20px;
    }

    .link-icon {
        height: 38px;
        width: 38px;
    }

    .title {
        font-size: 40px;
        border-width: 7px;
        padding: 0 2px 2px 2px;
        margin-bottom: 24px;
    }

    .benefits-container {
        width: 85%;
        gap: 20px;
    }

    .plus-container {
        height: 25px;
    }

    .benefit p {
        font-size: 20px;
    }

    .methode-text h2 {
        font-size: 30px;
    }

    .methode-text-img-container {
        flex-direction: column;
        gap: 20px;
    }

    .methode-illustration {
        height: 256px;
    }

    .methode-illustration {
        margin-right: 0;
    }

    .methode-text p {
        font-size: 24px;
    }

    .collapsible-button {
        font-size: 16px;
    }

    .phasen, .collapsible {
        width: 90%;
    }

    .collapsible-arrow {
        height: 16px;
    }

    .buch-description {
        width: 80%;
    }

    .software-introduction, .software-text {
        width: 90%;
        margin: 0 auto;
    }

    .software-img {
        height: 390px;
        margin: 1.5% auto;
    }

    .beratung-checkmarks {
        width: 95%;
    }

    .software-checkmarks-container, .beratung-checkmarks-container {
        margin-left: 0;
    }

    .software-checkmarks-unit, .beratung-checkmarks-unit {
        width: 96%;
    }

    .beratung-img {
        height: 275px;
    }

    .führen-text h2 {
        font-size: 32px;
    }

    .beratung-checkmarks {
        gap: 41px;
        margin-left: auto;
    }

    .beratung-checkmarks hr {
        display: none;
    }

    .footer-container {
        align-items: flex-start;
        flex-direction: column;
        padding-left: 16px;
        padding-top: 45px;
        padding-bottom: 70px;
        gap: 90px;
    }

    .footer-left {
        margin: 0;
    }

    .footer-right {
        margin: 0;
        text-align: left;
    }
}

@media (max-width: 625px) {
    header {
        height: 149px;
    }

    .cover {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .introduction {
        margin-bottom: 30px;
    }

    .title {
        margin-left: 6.5%;
    }

    .buch, .software, .beratung, .denkimpulse, .downloads, .ueber-mich {
        width: 100%;
        padding-left: 0;
    }

    .buch-cover {
        height: 350px;
    }

    .buch-description {
        width: 90%;
    }

    .beschreibung {
        margin-left: auto;
        margin-right: auto;
        width: 90%;
    }

    .software .link-container {
        margin-top: 50px;
    }

    .software-img {
        height: 320px;
    }
}

@media (max-width: 550px) {
    .hamburger-container {
        width: auto;
    }

    p.link {
        font-size: 16px;
    }

    .beratung-img {
        height: 250px;
    }

    .beratung-introduction {
        display: none;
    }

    .führen-text {
        margin-top: 45px;
    }
}

@media (max-width: 450px) {
    .subtitle {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .subtitle {
        font-size: 26px;
    }

    .software-checkmarks, .beratung-checkmarks {
        gap: 28px;
    }

    .software-checkmarks-unit, .beratung-checkmarks-unit {
        width: 97%;
    }
}

.dialogWrapper{
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	justify-content: center;
	align-items: center;
}

.ui-widget-overlay {
   background-color:#C1A0DB;
   opacity:0.90;
}
.ui-dialog, .ui-widget, .ui-widget-content, .ui-draggable, .ui-resizable,.ui-widget-content {background-color:transparent;}
.dialogContent1{
	background-color:white;
	overflow: auto;
	height: 100%;
}
.dialogWrapper2{
	max-width: 80%;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
}
.ui-widget-content {
	min-width: 70%;
}
.ui-dialog,.ui-widget, .ui-widget-content,.ui-draggable, .ui-resizable {
	background:white;
}
.closeBtn {
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.ui-dialog, .ui-widget, .ui-widget-content, .ui-draggable, .ui-resizable, .ui-widget-content {
    background-color: transparent;
}
.ui-widget-content {
            border: none !important;
}
.ui-corner-flat {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}
.ui-corner-all { 
	border-radius: 0px; 
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 0px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-topleft: 0px;
}
.closeBtn{color:white;float:right;cursor:pointer;margin-bottom:5px;}
.closeBtn img{width:20px;height:20px;}
.dialogContent2{padding:20px;}
.closeBtn:focus {
  outline: none;
}
.closeBtn:active {
  background-color: transparent;
  box-shadow: none;
  transform: none;
}
.ui-dialog .myButton{
border:0px;
}
.ui-dialog h1{
  font-size: 18px;
}
.ui-dialog h2{
  font-size: 16px;
    margin-bottom: 2px;
}
.ui-dialog h3{
  font-size: 15px;
    margin-bottom: 1px;
}
.ui-dialog h4{
	font-size: 14px;
	margin-top: 10px;
}
.ui-dialog h2,.ui-dialog h3{
margin-top: 20px;
}
.ui-dialog p {
    font-size: unset;
    padding-top: 10px;
}

.dataPrivacy
{
	cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
    font-size: 11px !important;
    color: black;
    background-color: transparent;
}